|
@@ -273,14 +273,18 @@ const checksBoxTs = async (datas, arr, type) => {
|
|
const [msg1, msg2] = [<any>[], <any>[]];
|
|
const [msg1, msg2] = [<any>[], <any>[]];
|
|
if (res && res.length) {
|
|
if (res && res.length) {
|
|
for (let i = 0; i < res.length; i++) {
|
|
for (let i = 0; i < res.length; i++) {
|
|
- delete res[i].children;
|
|
|
|
|
|
+ //delete res[i].children;
|
|
|
|
+ const cap = _.cloneDeep(res[i]);
|
|
|
|
+ if (cap.children) {
|
|
|
|
+ delete cap.children;
|
|
|
|
+ }
|
|
let obj = <any>{
|
|
let obj = <any>{
|
|
- auth_id: res[i].auth_id || res[i].AuthId,
|
|
|
|
|
|
+ auth_id: cap.auth_id || cap.AuthId,
|
|
role_id: role_id,
|
|
role_id: role_id,
|
|
};
|
|
};
|
|
- let authObj = res[i].AuthList
|
|
|
|
- ? Object.assign(_.cloneDeep(obj), res[i].AuthList)
|
|
|
|
- : Object.assign(_.cloneDeep(obj), res[i]);
|
|
|
|
|
|
+ let authObj = cap.AuthList
|
|
|
|
+ ? Object.assign(_.cloneDeep(obj), cap.AuthList)
|
|
|
|
+ : Object.assign(_.cloneDeep(obj), cap);
|
|
if (type == "add") {
|
|
if (type == "add") {
|
|
obj.event = 1;
|
|
obj.event = 1;
|
|
authObj.event = 1;
|
|
authObj.event = 1;
|
|
@@ -334,7 +338,6 @@ const checksBoxTs = async (datas, arr, type) => {
|
|
});
|
|
});
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
- // this.$message.error('未选中数据')
|
|
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
|