|
@@ -52,7 +52,7 @@
|
|
|
<!-- 参照订单数据 増行-->
|
|
|
<a-card :bordered="true" style="margin:10px 0 60px 0">
|
|
|
<div class="table-operator">
|
|
|
- <a-button type="primary" @click="referOrderDataOpen" icon="ordered-list">参照订单数据</a-button>
|
|
|
+ <a-button type="primary" @click="referOrderDataOpen" icon="ordered-list" disabled="true">参照订单数据</a-button>
|
|
|
</div>
|
|
|
|
|
|
<!-- 子表 :model="form" :rules="validatorRules"-->
|
|
@@ -619,6 +619,7 @@ export default {
|
|
|
|
|
|
editById(this.editShipDet).then(res => {
|
|
|
if (res.success) {
|
|
|
+ debugger
|
|
|
this.$message.success('编辑成功');
|
|
|
this.addShipDet = {};
|
|
|
this.addShipDet.syShippingDetailsItemList = [];
|
|
@@ -681,11 +682,7 @@ export default {
|
|
|
},
|
|
|
// 操作 删除
|
|
|
handleDelete(index) {
|
|
|
- console.log('index', index)
|
|
|
- console.log('删除该项订单数据', index)
|
|
|
- this.syShippingDetailsItemList = this.syShippingDetailsItemList.filter(item =>{
|
|
|
- return item.id !== index
|
|
|
- })
|
|
|
+ this.$message.error('编辑状态下,不可删除!')
|
|
|
},
|
|
|
// 操作 复制
|
|
|
copy(record) {
|