|
@@ -1,7 +1,8 @@
|
|
|
<template>
|
|
<template>
|
|
|
<view>
|
|
<view>
|
|
|
|
|
|
|
|
- <view class="title_box rx-bc" v-if="productsObj.name != 'undefined' && productsObj.feedQuantity != 'undefined' ">
|
|
|
|
|
|
|
+ <view class="title_box rx-bc"
|
|
|
|
|
+ v-if="productsObj.name != 'undefined' && productsObj.feedQuantity != 'undefined' ">
|
|
|
<view class="name">在制品</view>
|
|
<view class="name">在制品</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
@@ -27,14 +28,17 @@
|
|
|
|
|
|
|
|
<view class="item">
|
|
<view class="item">
|
|
|
<view class="lable rx-cc">数量</view>
|
|
<view class="lable rx-cc">数量</view>
|
|
|
- <view class="content"> {{ productsObj.feedQuantity || 0 }} {{ productsObj.unit }} </view>
|
|
|
|
|
|
|
+ <view class="content"> {{ productsObj.extInfo.sourceQuantity || 0 }} {{ productsObj.unit }} </view>
|
|
|
</view>
|
|
</view>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<view class="item">
|
|
<view class="item">
|
|
|
<view class="lable rx-cc">投料数量</view>
|
|
<view class="lable rx-cc">投料数量</view>
|
|
|
- <view class="content content_num"> {{ productsObj.unit }} </view>
|
|
|
|
|
|
|
+ <view class="content content_num">
|
|
|
|
|
+ <input class="uni-input" v-model="productsObj.feedQuantity" type="digit"></input>
|
|
|
|
|
+ {{ productsObj.unit }}
|
|
|
|
|
+ </view>
|
|
|
</view>
|
|
</view>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|