|
|
@@ -11,6 +11,7 @@
|
|
|
|
|
|
|
|
|
<view class="material rx-ss" v-for="(item, index) in list" :key='index'>
|
|
|
+
|
|
|
<view class="left rx-ss" @click="getDelete(index)" v-if='workOrderId'>
|
|
|
<uni-icons custom-prefix="iconfont" type="icon-shanchu" size="20" color="#fa3534"></uni-icons>
|
|
|
</view>
|
|
|
@@ -64,6 +65,15 @@
|
|
|
@click="handleStorage(index)">货位</view>
|
|
|
|
|
|
</view>
|
|
|
+
|
|
|
+ <view class="item" v-if="Object.prototype.hasOwnProperty.call(item, 'equipmentLabelJson') && item.equipmentLabelJson.length != 0 && item.equipmentLabelJson[0].SBFL == 1">
|
|
|
+ <view class="lable rx-cc">是否封炉</view>
|
|
|
+ <view class="content">
|
|
|
+ <u-checkbox-group v-model="item.isSBFL" size="15px" >
|
|
|
+ <u-checkbox labelSize="15px" iconSize="10px" activeColor="#157A2C" name="true" label="是"></u-checkbox>
|
|
|
+ </u-checkbox-group>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
|
|
|
|
|
|
|
|
|
@@ -140,7 +150,7 @@
|
|
|
<input
|
|
|
:class="['uni-input', wordItem.code == it.workOrderCode && it.quantity > 0 ? 'content_num' : '']"
|
|
|
v-model="it.feedNum" type="digit"
|
|
|
- :disabled="it.quantity <= 0 || wordItem.code != it.workOrderCode "
|
|
|
+ :disabled="it.quantity <= 0 || wordItem.code != it.workOrderCode || isDetails"
|
|
|
@blur="Number(it.feedNum) > Number(it.quantity) ? it.feedNum = Number(it.quantity) : ''"></input>
|
|
|
</view>
|
|
|
|