|
|
@@ -10,13 +10,13 @@
|
|
|
<view class="item">
|
|
|
<view class="lable rx-cc">编码</view>
|
|
|
<view class="content">
|
|
|
- {{mate.assetCode}}
|
|
|
+ {{mate.code}}
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
<view class="item">
|
|
|
<view class="lable rx-cc">名称</view>
|
|
|
- <view class="content">{{mate.assetName}}</view>
|
|
|
+ <view class="content">{{mate.name}}</view>
|
|
|
</view>
|
|
|
|
|
|
|
|
|
@@ -30,9 +30,9 @@
|
|
|
<view class="item">
|
|
|
<view class="lable rx-cc">数量</view>
|
|
|
<view class="content content_num">
|
|
|
- <input class="uni-input" v-model="mate.demandQuantity" @blur='mate.demandQuantity > mate.number ? mate.demandQuantity = mate.number : mate.needNum' type="digit"></input>
|
|
|
+ <input class="uni-input" v-model="mate.demandQuantity" @blur='mate.demandQuantity > mate.availableCountBase ? mate.demandQuantity = mate.availableCountBase : mate.demandQuantity' type="digit"></input>
|
|
|
<view class="unit">/{{mate.unit}}</view>
|
|
|
- <view> (库存:{{ mate.number }})</view>
|
|
|
+ <view> (库存:{{ mate.availableCountBase }})</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
@@ -41,7 +41,7 @@
|
|
|
<view class="item">
|
|
|
<view class="lable rx-cc">领料仓库</view>
|
|
|
<view class="content ">
|
|
|
-
|
|
|
+ {{ mate.pathName }}
|
|
|
</view>
|
|
|
</view>
|
|
|
|