|
@@ -92,6 +92,14 @@ export default {
|
|
|
},
|
|
|
deep: true,
|
|
|
},
|
|
|
+ "$store.state.auth.authList": {
|
|
|
+ handler (val) {
|
|
|
+ this.AuthList = val;
|
|
|
+ this.resetData();
|
|
|
+ this.defaultExpandedKeys = [this.$store.getters.authId]
|
|
|
+ },
|
|
|
+ deep: true,
|
|
|
+ },
|
|
|
},
|
|
|
created () {
|
|
|
this.getDataList()
|
|
@@ -105,17 +113,17 @@ export default {
|
|
|
}).then((result) => {
|
|
|
if (result.code == 0) {
|
|
|
this.AuthArrList = _.cloneDeep(result.returnData.listValues)
|
|
|
- this.toTree(result.returnData.listValues)
|
|
|
+ this.toTree(this.AuthArrList)
|
|
|
} else {
|
|
|
this.$message.error(result.message)
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
//数据转树形
|
|
|
- toTree (arrDatas) {
|
|
|
+ toTree () {
|
|
|
this.treeData = [];
|
|
|
const arr = translateDataToTreeAll(
|
|
|
- arrDatas,
|
|
|
+ this.AuthArrList,
|
|
|
"up_auth_id",
|
|
|
"auth_id"
|
|
|
)
|
|
@@ -139,10 +147,7 @@ export default {
|
|
|
arr.forEach((item) => {
|
|
|
if (!item.AuthList) {
|
|
|
item.AuthList = {
|
|
|
- AuthId: item.auth_id,
|
|
|
- ValidBegin: "",
|
|
|
- ValidEnd: "",
|
|
|
- Action: "1",
|
|
|
+ auth_id: item.auth_id,
|
|
|
QueryRow: "",
|
|
|
QueryCol: "",
|
|
|
NewCol: "",
|
|
@@ -169,8 +174,8 @@ export default {
|
|
|
this.AuthArrList.forEach((item1) => {
|
|
|
item1["AuthList"] = null;
|
|
|
this.AuthList.forEach((item2) => {
|
|
|
- if (item1.AuthId == item2.AuthId) {
|
|
|
- item1.AuthList = item2;
|
|
|
+ if (item1.auth_id == item2.auth_id) {
|
|
|
+ item1.AuthList = item2.AuthList;
|
|
|
}
|
|
|
});
|
|
|
});
|
|
@@ -184,8 +189,8 @@ export default {
|
|
|
const arr = this.$store.getters.authArrs;
|
|
|
arr.push(data);
|
|
|
const datas = _.unionBy(arr, "auth_id");
|
|
|
- const newDatas = _.cloneDeep(datas);
|
|
|
- this.$store.dispatch("auth/changeAuthMsg", newDatas);
|
|
|
+ // const newDatas = _.cloneDeep(datas);
|
|
|
+ // this.$store.dispatch("auth/changeAuthMsg", newDatas);
|
|
|
this.$store.dispatch("auth/changeAuthArrs", datas);
|
|
|
this.$store.dispatch("auth/changeAuthId", data.auth_id);
|
|
|
}
|