|
@@ -25,20 +25,11 @@
|
|
|
</li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
- <div class="paren_list">
|
|
|
- <ul>
|
|
|
- <li v-for="(item, index) in treeTitles" :key="index">
|
|
|
- <div class="up_type" :class="active === index ? 'up_types' : 'up_type'" @click="upActive(item, index)">
|
|
|
- {{ item.AuthName }}
|
|
|
- </div>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </div>
|
|
|
<div class="paren_cont">
|
|
|
<el-scrollbar style="height: 100%">
|
|
|
- <el-tree :data="data" show-checkbox @check-change="currentChange" @node-click="handleNodeClick" :defaultProps="defaultProps" :expand-on-click-node="false" node-key="AuthId" default-expand-all ref="tree" highlight-current>
|
|
|
+ <el-tree :data="treeData" show-checkbox @check="currentChange" @node-click="handleNodeClick" :defaultProps="defaultProps" :expand-on-click-node="false" node-key="auth_id" :default-expanded-keys="defaultExpandedKeys" ref="tree" highlight-current>
|
|
|
<span class="custom-tree-node" slot-scope="{ data }">
|
|
|
- {{ data.AuthName }}
|
|
|
+ {{ data.auth_name }}
|
|
|
<div class="logup">
|
|
|
<div class="one" v-if="
|
|
|
data.AuthList != null && data.AuthList.ValidBegin != null
|
|
@@ -65,7 +56,7 @@
|
|
|
<script>
|
|
|
// import treeData from "@/views/authorityManagement/minixs/treeData";
|
|
|
import { translateDataToTreeAll } from "@/utils/validate";
|
|
|
-import { GetAuthTree } from "@/api/apiAuthority";
|
|
|
+import { Query } from '@/api/dataIntegration';
|
|
|
export default {
|
|
|
props: {
|
|
|
title: {
|
|
@@ -80,12 +71,13 @@ export default {
|
|
|
data () {
|
|
|
return {
|
|
|
active: 0,
|
|
|
- data: [],
|
|
|
+ treeData: [],
|
|
|
treeTitles: [],
|
|
|
defaultProps: {
|
|
|
children: "children",
|
|
|
- label: "AuthName",
|
|
|
+ label: "auth_name",
|
|
|
},
|
|
|
+ defaultExpandedKeys: [-1],
|
|
|
dataObj: {}, //上级权限指定树数据
|
|
|
AuthArrList: [],//权限列表源数据
|
|
|
AuthList: [],//权限规则列表
|
|
@@ -96,85 +88,71 @@ export default {
|
|
|
checkedKeys: {
|
|
|
handler (val) {
|
|
|
this.checkedList = val;
|
|
|
- this.$refs.tree.setCheckedKeys(val);
|
|
|
+ this.$refs.tree.setCheckedKeys(val)
|
|
|
},
|
|
|
deep: true,
|
|
|
},
|
|
|
- "$store.state.auth.authList": {
|
|
|
- handler (val) {
|
|
|
- this.AuthList = val;
|
|
|
- this.resetData();
|
|
|
- },
|
|
|
- immediate: true,
|
|
|
- deep: true
|
|
|
- },
|
|
|
},
|
|
|
- created: function () {
|
|
|
- this.getDataList();
|
|
|
+ created () {
|
|
|
+ this.getDataList()
|
|
|
},
|
|
|
methods: {
|
|
|
//获取权限列表
|
|
|
getDataList () {
|
|
|
- GetAuthTree({ QueryName: "" }).then((result) => {
|
|
|
- if (result.code === 0 && result.returnData.length) {
|
|
|
- result.returnData.forEach((item) => {
|
|
|
- item.flag = item.Status === 1 ? true : false;
|
|
|
- item["AuthList"] = null;
|
|
|
- });
|
|
|
- this.AuthArrList = _.cloneDeep(result.returnData);
|
|
|
- this.toTree();
|
|
|
+ Query({
|
|
|
+ id: DATACONTENT_ID.authTreeId,
|
|
|
+ dataContent: ['']
|
|
|
+ }).then((result) => {
|
|
|
+ if (result.code == 0) {
|
|
|
+ this.AuthArrList = _.cloneDeep(result.returnData.listValues)
|
|
|
+ this.toTree(result.returnData.listValues)
|
|
|
} else {
|
|
|
- this.$message.error(result.message);
|
|
|
+ this.$message.error(result.message)
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
//数据转树形
|
|
|
- toTree () {
|
|
|
- this.data = [];
|
|
|
- this.dataObj = {};
|
|
|
- this.treeTitles = [];
|
|
|
- let arr = null
|
|
|
- arr = translateDataToTreeAll(
|
|
|
- this.AuthArrList,
|
|
|
- "UpAuthId",
|
|
|
- "AuthId"
|
|
|
+ toTree (arrDatas) {
|
|
|
+ this.treeData = [];
|
|
|
+ const arr = translateDataToTreeAll(
|
|
|
+ arrDatas,
|
|
|
+ "up_auth_id",
|
|
|
+ "auth_id"
|
|
|
)
|
|
|
- let items = null
|
|
|
- items = {
|
|
|
- AuthId: 0,
|
|
|
- AuthName: "所有权限",
|
|
|
- QueryTarget: 0,
|
|
|
- Status: 0,
|
|
|
- UpAuthId: 0,
|
|
|
- Type: 0,
|
|
|
+ const items = {
|
|
|
+ auth_id: -1,
|
|
|
+ auth_name: "所有权限",
|
|
|
+ auth_status: 0,
|
|
|
+ up_auth_id: -2,
|
|
|
+ auth_type: 0,
|
|
|
children: arr,
|
|
|
};
|
|
|
- this.dataObj = _.cloneDeep(items)
|
|
|
- this.data = [items];
|
|
|
- let obj = null
|
|
|
- obj = _.cloneDeep(items);
|
|
|
- let datas = null
|
|
|
- datas = obj.children.filter((item) => item.Type === 1);
|
|
|
- datas.forEach((item) => {
|
|
|
- delete item.children;
|
|
|
- });
|
|
|
- delete obj.children;
|
|
|
- datas.unshift(obj);
|
|
|
- this.treeTitles = datas;
|
|
|
- },
|
|
|
- //数据切换
|
|
|
- upActive (item, index) {
|
|
|
- this.active = index;
|
|
|
- this.decompose([this.dataObj], item.AuthId);
|
|
|
- this.$refs.tree.setCheckedKeys(this.checkedList);
|
|
|
+ this.treeData = [items]
|
|
|
},
|
|
|
// 树节点选中
|
|
|
currentChange () {
|
|
|
- this.checkedList = [],
|
|
|
- this.$refs.tree.getCheckedNodes().forEach(item => {
|
|
|
- this.checkedList.push(item.AuthId);
|
|
|
- })
|
|
|
- this.$emit("getTreeData", this.$refs.tree.getCheckedNodes());
|
|
|
+ const datas = this.$refs.tree.getCheckedNodes()
|
|
|
+ this.setDataObj(datas)
|
|
|
+ },
|
|
|
+ // 选中后设置初始数据
|
|
|
+ setDataObj (arr) {
|
|
|
+ arr.forEach((item) => {
|
|
|
+ if (!item.AuthList) {
|
|
|
+ item.AuthList = {
|
|
|
+ AuthId: item.auth_id,
|
|
|
+ ValidBegin: "",
|
|
|
+ ValidEnd: "",
|
|
|
+ Action: "1",
|
|
|
+ QueryRow: "",
|
|
|
+ QueryCol: "",
|
|
|
+ NewCol: "",
|
|
|
+ EditRow: "",
|
|
|
+ EditCol: "",
|
|
|
+ DeleteRow: "",
|
|
|
+ };
|
|
|
+ }
|
|
|
+ });
|
|
|
+ this.$emit("getTreeData", arr);
|
|
|
},
|
|
|
//获取指定数据
|
|
|
decompose (data, id) {
|
|
@@ -200,8 +178,16 @@ export default {
|
|
|
},
|
|
|
//获取点击目标
|
|
|
handleNodeClick (data) {
|
|
|
- // this.toTree();
|
|
|
- this.$store.state.auth.authId = data;
|
|
|
+ if (data.children) {
|
|
|
+ delete data.children
|
|
|
+ }
|
|
|
+ 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);
|
|
|
+ this.$store.dispatch("auth/changeAuthArrs", datas);
|
|
|
+ this.$store.dispatch("auth/changeAuthId", data.auth_id);
|
|
|
}
|
|
|
},
|
|
|
};
|