|
|
@@ -206,9 +206,11 @@
|
|
|
this.requestDict('规则状态');
|
|
|
},
|
|
|
methods: {
|
|
|
- init(holderType, holderId, holder) {
|
|
|
+ init(holderType, holderId, holder, isContactAdd) {
|
|
|
this.holderData = { holderId, holder, holderType };
|
|
|
- this.getTable();
|
|
|
+ if(!isContactAdd) {
|
|
|
+ this.getTable();
|
|
|
+ }
|
|
|
},
|
|
|
async submit(row) {
|
|
|
this.processSubmitDialogFlag = true;
|
|
|
@@ -251,6 +253,7 @@
|
|
|
}
|
|
|
},
|
|
|
handleUpload(type, row) {
|
|
|
+ console.log(type, row, this.holderData, 'row');
|
|
|
this.$refs.addDialogRef.open(row, type, this.holderData);
|
|
|
},
|
|
|
|