mabo 2021-07-02 09:50:28 +08:00
commit 6988ad8bf0
2 changed files with 49 additions and 7 deletions

View File

@ -22,6 +22,11 @@ export default {
this.init(); this.init();
}, },
methods: { methods: {
clear() {
this.data = [];
this.selectedWay = [];
this.init();
},
/** /**
* 关闭 * 关闭
*/ */
@ -50,31 +55,67 @@ export default {
// console.warn(this.$store.state.shipTemplate); // console.warn(this.$store.state.shipTemplate);
// //
let checkData = [];
let disabledData = checkedData.filter((item, i) => { let disabledData = checkedData.filter((item, i) => {
if (i != index) {
return i != index; return i != index;
} else {
checkData.push(item);
}
}); });
//
checkData.forEach((check) => {
// id
check.areaId.split(",").forEach((ids) => {
this.data.forEach((item) => {
//
if (check.selectedAll) {
check.area.split(",").forEach((area) => {
if (area == item.name) {
this.$set(item, "checked", true);
}
});
}
//
item.children.forEach((child, childIndex) => {
//
if (item.checked) {
this.$set(child, "checked", true);
}
if (child.id == ids) {
this.$set(child, "checked", true);
}
});
});
});
});
//
disabledData.forEach((dis) => { disabledData.forEach((dis) => {
console.log(dis)
// id // id
dis.areaId.split(",").forEach((ids) => { dis.areaId.split(",").forEach((ids) => {
// //
this.data.forEach((item) => { this.data.forEach((item) => {
// //
if (dis.selectedAll) { if (dis.selectedAll) {
dis.area.split(",").forEach((area) => { dis.area.split(",").forEach((area) => {
if (area == item.name) { if (area == item.name) {
console.log(item.name +"选中")
this.$set(item, "disabled", true); this.$set(item, "disabled", true);
} }
}); });
} }
// //
item.children.forEach((child, childIndex) => { item.children.forEach((child, childIndex) => {
// //
if (item.disabled) {
this.$set(child, "disabled", true);
} else {
if (child.id == ids) { if (child.id == ids) {
this.$set(child, "disabled", true); this.$set(child, "disabled", true);
} }
}
}); });
}); });
}); });

View File

@ -213,6 +213,7 @@ export default {
}, },
// //
add() { add() {
this.$refs.region.clear()
this.title = "添加运费模板"; this.title = "添加运费模板";
this.csTab = true; this.csTab = true;
this.operation = "ADD"; this.operation = "ADD";