|
|
@@ -544,7 +544,7 @@ export default {
|
|
|
},
|
|
|
autoOrderChange(val) {
|
|
|
if (val == 0) {
|
|
|
- this.addForm.executorId = '';
|
|
|
+ this.addForm.executorId = [];
|
|
|
this.addForm.groupId = '';
|
|
|
}
|
|
|
},
|
|
|
@@ -702,7 +702,7 @@ export default {
|
|
|
// this._getMatterRulesDetails(res.ruleId);
|
|
|
this.$set(this.addForm, 'code', res.data.code);
|
|
|
this.$set(this.addForm, 'urgent', JSON.stringify(res.data.urgent));
|
|
|
- this.$set(this.addForm, 'executorId', res.data.executorId.split(','));
|
|
|
+ this.$set(this.addForm, 'executorId', res.data.executorId.split(',').filter((i) => i));
|
|
|
this.$set(this.addForm, 'imageUrl', {});
|
|
|
console.log(this.rootData);
|
|
|
if(res.data.groupId){
|