|
@@ -122,6 +122,7 @@
|
|
|
centered
|
|
|
width="60%"
|
|
|
:maskClosable="false"
|
|
|
+ @cancel="cancelNewCust"
|
|
|
:footer="null"
|
|
|
>
|
|
|
<CustomerManagementEdit ref="newCust" model="modal" @ok="newCustFun"></CustomerManagementEdit>
|
|
@@ -217,6 +218,10 @@ export default {
|
|
|
this.custChange(data.customerSn)
|
|
|
}, 300)
|
|
|
},
|
|
|
+ cancelNewCust () {
|
|
|
+ this.isNewCust = false
|
|
|
+ this.$refs.newCust.getBaseData()
|
|
|
+ },
|
|
|
// 客户 change
|
|
|
custChange (val) {
|
|
|
console.log(val, 'custChange')
|