|
|
@ -16,12 +16,14 @@ |
|
|
|
font-size:20rpx; |
|
|
|
color:#fff; |
|
|
|
background:#10C176; |
|
|
|
border-radius: 4rpx; |
|
|
|
width:80rpx; |
|
|
|
border-radius: 7rpx; |
|
|
|
min-width:80rpx; |
|
|
|
padding:0 6rpx; |
|
|
|
text-align: center; |
|
|
|
height:40rpx; |
|
|
|
line-height: 40rpx; |
|
|
|
margin-right:16rpx; |
|
|
|
box-sizing: border-box; |
|
|
|
} |
|
|
|
&:nth-child(3){ |
|
|
|
border-radius: 50%; |
|
|
@ -123,10 +125,10 @@ |
|
|
|
|
|
|
|
<view class="card specs"> |
|
|
|
<view class="title_mast">规格</view> |
|
|
|
<view class="select" style="margin-bottom:20rpx;"> |
|
|
|
<!-- <view class="select" style="margin-bottom:20rpx;"> |
|
|
|
<text>请添加规格</text> |
|
|
|
<text class="plant-youbian"/> |
|
|
|
</view> |
|
|
|
</view> --> |
|
|
|
<view style="display:flex;"> |
|
|
|
<view class="select"> |
|
|
|
<text>请添加规格</text> |
|
|
@ -138,9 +140,9 @@ |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="card purchase"> |
|
|
|
<view class="title_mast">采购数量</view> |
|
|
|
<view class="title_mast">{{({out:"出",in:"入"})[mode]}}库数量</view> |
|
|
|
<view class="input"> |
|
|
|
<input placeholder="请输入采购数量"/> |
|
|
|
<input placeholder="请输入采购数量" type="digit"/> |
|
|
|
<text>kg</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
@ -150,6 +152,16 @@ |
|
|
|
</template> |
|
|
|
<script> |
|
|
|
export default{ |
|
|
|
|
|
|
|
data(){ |
|
|
|
return{ |
|
|
|
mode:"", |
|
|
|
} |
|
|
|
}, |
|
|
|
onLoad(options){ |
|
|
|
this.mode=options.mode |
|
|
|
uni.setNavigationBarTitle({ |
|
|
|
title:({out:"出库列表",in:"入库列表"})[this.mode] |
|
|
|
}) |
|
|
|
}, |
|
|
|
} |
|
|
|
</script> |