Browse Source

fix:修改基础卡导入bug

confidence
杜贤金 3 years ago
parent
commit
68a103bed1
  1. 11
      src/views/communicationmanage/basiccard/basiccard.vue

11
src/views/communicationmanage/basiccard/basiccard.vue

@ -684,6 +684,17 @@ export default {
} }
} }
}, },
"excelForm.$tenantId"() {
const columns = this.findObject(this.excelOption.column, "flowPoolId");
if (this.excelForm.$tenantId != undefined) {
if (this.excelForm.$tenantId.indexOf("电信") != -1) {
columns.display = false;
this.excelForm.flowPoolId = "";
} else {
columns.display = true;
}
}
},
}, },
methods: { methods: {
// //

Loading…
Cancel
Save