|
|
@@ -76,7 +76,7 @@
|
|
|
<td class="text-wrap" v-text="item.commodity ? item.commodity.sku : ''"></td>
|
|
|
<td v-text="item.amount"></td>
|
|
|
<td v-text="item.abnormal_amount"></td>
|
|
|
- <td v-text="item.price"></td>
|
|
|
+ <td v-text="Number(item.price) === 0?'待提供' : item.price"></td>
|
|
|
<td>
|
|
|
<input type="number" class="form-control form-control-sm"
|
|
|
v-model="item.check_amount" @input="logisticDamageWorkOrderAuto(item)">
|
|
|
@@ -125,7 +125,8 @@
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button @click="dialogShowLogisticVisible = false">关 闭</el-button>
|
|
|
- <el-button type="primary" @click="logisticEdit">提交</el-button>
|
|
|
+ <el-button type="primary" @click="logisticEdit" v-show="'破损' === logisticEditWorkOrder.issue_type_name && logisticCheckDamage" disabled>提交</el-button>
|
|
|
+ <el-button type="primary" @click="logisticEdit" v-show="'破损' !== logisticEditWorkOrder.issue_type_name">提交</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
|