index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  1. <template>
  2. <div class="bf-permissiontree">
  3. <!-- 权限树 -->
  4. <div class="cont">
  5. <div class="paren_header">
  6. <p>{{ title }}</p>
  7. </div>
  8. <div class="paren_type">
  9. <ul>
  10. <li>
  11. <div class="log"></div>
  12. <p>时效规则有</p>
  13. </li>
  14. <li>
  15. <div class="log"></div>
  16. <p>数据规则有</p>
  17. </li>
  18. <li>
  19. <div class="log"></div>
  20. <p>显示及编辑权限</p>
  21. </li>
  22. <li>
  23. <div class="log"></div>
  24. <p>显示权限</p>
  25. </li>
  26. </ul>
  27. </div>
  28. <!-- <div class="paren_list">
  29. <ul>
  30. <li v-for="(item, index) in treeTitles" :key="index">
  31. <div
  32. class="up_type"
  33. :class="active === index ? 'up_types' : 'up_type'"
  34. @click="upActive(item, index)"
  35. >
  36. {{ item.AuthName }}
  37. </div>
  38. </li>
  39. </ul>
  40. </div> -->
  41. <div class="paren_cont">
  42. <el-scrollbar style="height: 100%">
  43. <el-tree :data="data" show-checkbox :check-strictly="true" @check-change="currentChange" @node-click="handleNodeClick" :defaultProps="defaultProps" :expand-on-click-node="false" node-key="AuthId" default-expand-all ref="tree" highlight-current>
  44. <span class="custom-tree-node" slot-scope="{ data }">
  45. {{ data.AuthName }}
  46. <div class="logup">
  47. <div class="one" v-if="data.AuthList && data.AuthList.ValidBegin"></div>
  48. <div class="two" v-if="data.AuthList && data.AuthList.Action == '1'"></div>
  49. <div class="four" v-if="data.AuthList && data.AuthList.Action == '2'"></div>
  50. <div class="three" v-if="
  51. data.AuthList &&
  52. (data.AuthList.EditCol ||
  53. data.AuthList.DeleteRow ||
  54. data.AuthList.EditRow ||
  55. data.AuthList.NewCol ||
  56. data.AuthList.QueryCol ||
  57. data.AuthList.QueryRow)
  58. "></div>
  59. </div>
  60. </span>
  61. </el-tree>
  62. </el-scrollbar>
  63. </div>
  64. </div>
  65. </div>
  66. </template>
  67. <script>
  68. // import treeData from "@/views/authorityManagement/minixs/treeData";
  69. import { translateDataToTreeAll, deteleObject } from "@/utils/validate";
  70. import { GetAuthTree } from "@/api/apiAuthority";
  71. import { GetAuthTreeByGroup } from "@/api/AccountGroup";
  72. import { organizationUptree, postUptree } from "@/api/postInterface";
  73. export default {
  74. props: {
  75. title: {
  76. type: String,
  77. default: "",
  78. },
  79. checkedKeys: {
  80. //已选中
  81. type: Array,
  82. default: () => [],
  83. },
  84. //查询类型:queryType: all/获取全部权限树;job/根据岗位获取权限树;origin/根据组织获取权限树;group/根据帐号组获取权限树;
  85. queryType: {
  86. type: String,
  87. default: "all",
  88. },
  89. //要查询的查询ID
  90. queryId: {
  91. type: String,
  92. default: "",
  93. },
  94. queryIds: {
  95. type: Array,
  96. default: () => []
  97. },
  98. //要查询的查询ID
  99. isMainJob: {
  100. type: Boolean,
  101. default: true,
  102. },
  103. },
  104. data () {
  105. return {
  106. active: 0,
  107. data: [],
  108. treeTitles: [],
  109. defaultProps: {
  110. children: "children",
  111. label: "AuthName",
  112. },
  113. searchId: "",
  114. dataObj: {}, //上级权限指定树数据
  115. AuthArrList: [], //权限列表源数据
  116. AuthList: [], //权限规则列表
  117. checkedList: [], //选中的列表
  118. oldType: "",
  119. queryIdArr: [], //历史查询ID
  120. MainJobId: "",//主岗ID
  121. };
  122. },
  123. watch: {
  124. checkedKeys: {
  125. handler (val) {
  126. this.checkedList = val;
  127. this.$refs.tree.setCheckedKeys(val);
  128. },
  129. deep: true,
  130. },
  131. "$store.state.auth.authList": {
  132. handler (val) {
  133. this.AuthList = val;
  134. this.resetData();
  135. },
  136. immediate: true,
  137. deep: true,
  138. },
  139. queryId: {
  140. handler (val) {
  141. if (this.queryType == "job") {
  142. this.setDisabledAll();
  143. let ids = val.split(",");
  144. this.queryIdArr = [];
  145. this.$refs.tree.setCheckedKeys([]);
  146. if (this.isMainJob == true) {
  147. this.MainJobId = val;
  148. }
  149. if (this.MainJobId != "") {
  150. this.queryIdArr.push(this.MainJobId);
  151. }
  152. for (let i = 0; i < ids.length; i++) {
  153. if (_.indexOf(this.queryIdArr, ids[i]) == -1) {
  154. this.queryIdArr.push(ids[i]);
  155. }
  156. }
  157. for (let j = 0; j < this.queryIdArr.length; j++) {
  158. this.searchId = this.queryIdArr[j];
  159. this.getDefaultDataList();
  160. }
  161. } else {
  162. this.searchId = val;
  163. this.getDefaultDataList();
  164. }
  165. },
  166. deep: true,
  167. },
  168. queryIds: {
  169. handler() {
  170. this.getDefaultDataList()
  171. },
  172. deep: true
  173. }
  174. },
  175. created: function () {
  176. this.getDataList();
  177. this.searchId = this.queryId;
  178. },
  179. methods: {
  180. //获取权限列表
  181. getDataList () {
  182. GetAuthTree({ QueryName: "" }).then((result) => {
  183. this.getDefaultDataList();
  184. this.setData(result);
  185. });
  186. },
  187. async getDefaultDataList () {
  188. if (this.queryType == "all" && this.searchId != "") {
  189. //获取全部权限树
  190. GetAuthTree({ QueryName: "" }).then((result) => {
  191. this.setUnDisabledData(result.returnData);
  192. });
  193. } else if (this.queryType == "job") {
  194. //根据岗位获取权限树
  195. postUptree({ JobId: this.searchId }).then((result) => {
  196. this.setUnDisabledData(result.returnData);
  197. });
  198. } else if (this.queryType == "origin") {
  199. //根据组织获取权限树
  200. this.AuthList = [];
  201. this.$refs.tree.setCheckedKeys([])
  202. organizationUptree({ OrganId: this.searchId }).then((result) => {
  203. this.setUnDisabledData(result.returnData);
  204. });
  205. } else if (this.queryType == "group") {
  206. //根据帐号组获取权限树
  207. if (this.searchId) {
  208. GetAuthTreeByGroup({ GroupIds: [this.searchId] }).then((result) => {
  209. this.setUnDisabledData(result.returnData);
  210. });
  211. } else if (this.queryIds.length) {
  212. GetAuthTreeByGroup({ GroupIds: this.queryIds }).then((result) => {
  213. this.setUnDisabledData(result.returnData)
  214. })
  215. }
  216. }
  217. },
  218. setData (result) {
  219. if (result.code === 0 && result.returnData.length) {
  220. this.AuthArrList = [];
  221. result.returnData.forEach((item) => {
  222. item.flag = item.Status === 1 ? true : false;
  223. item["AuthList"] = null;
  224. if (this.queryType != "all") {
  225. item["disabled"] = true;
  226. }
  227. });
  228. this.AuthArrList = _.cloneDeep(result.returnData);
  229. this.toTree();
  230. } else {
  231. this.$message.error(result.message);
  232. }
  233. },
  234. //数据转树形
  235. toTree () {
  236. this.data = [];
  237. this.dataObj = {};
  238. this.treeTitles = [];
  239. let arr = null;
  240. arr = translateDataToTreeAll(this.AuthArrList, "UpAuthId", "AuthId");
  241. let items = null;
  242. items = {
  243. AuthId: 0,
  244. AuthName: "所有权限",
  245. QueryTarget: 0,
  246. Status: 0,
  247. UpAuthId: 0,
  248. Type: 0,
  249. disabled: true,
  250. children: arr,
  251. };
  252. this.dataObj = _.cloneDeep(items);
  253. this.data = [items];
  254. let obj = null;
  255. obj = _.cloneDeep(items);
  256. let datas = null;
  257. datas = obj.children.filter((item) => item.Type === 1);
  258. datas.forEach((item) => {
  259. delete item.children;
  260. });
  261. delete obj.children;
  262. datas.unshift(obj);
  263. this.treeTitles = datas;
  264. if (this.$refs.tree) {
  265. this.$refs.tree.setCheckedKeys(this.checkedList);
  266. }
  267. },
  268. //数据切换
  269. upActive (item, index) {
  270. this.active = index;
  271. this.decompose([this.dataObj], item.AuthId);
  272. this.$refs.tree.setCheckedKeys(this.checkedList);
  273. },
  274. // 树节点选中
  275. currentChange () {
  276. this.checkedList = [];
  277. const arr = this.$refs.tree.getCheckedNodes();
  278. arr.forEach((item) => {
  279. // if(item.disabled==false){
  280. this.checkedList.push(item.AuthId);
  281. // }
  282. });
  283. this.setDataObj(arr);
  284. },
  285. // 选中后设置初始数据
  286. setDataObj (arr) {
  287. arr.forEach((item) => {
  288. if (!item.AuthList) {
  289. item.AuthList = {
  290. AuthId: item.AuthId,
  291. ValidBegin: "",
  292. ValidEnd: "",
  293. Action: "1",
  294. QueryRow: "",
  295. QueryCol: "",
  296. NewCol: "",
  297. EditRow: "",
  298. EditCol: "",
  299. DeleteRow: "",
  300. };
  301. }
  302. });
  303. this.$emit("getTreeData", arr);
  304. },
  305. //获取指定数据
  306. decompose (data, id) {
  307. for (let i = 0; i < data.length; i++) {
  308. if (data[i].AuthId == id) {
  309. this.data = [data[i]];
  310. } else if (data[i].children && data[i].children.length > 0) {
  311. this.decompose(data[i].children, id);
  312. }
  313. }
  314. },
  315. //获取权限规则 从新组合数据
  316. resetData () {
  317. if (this.AuthList) {
  318. this.AuthArrList.forEach((item1) => {
  319. item1["AuthList"] = null;
  320. this.AuthList.forEach((item2) => {
  321. if (item1.AuthId == item2.AuthId) {
  322. item1.AuthList = item2;
  323. }
  324. });
  325. });
  326. }
  327. this.toTree();
  328. },
  329. setUnDisabledData (data) {
  330. const ArrData = _.cloneDeep(data);
  331. this.AuthArrList.forEach((item1) => {
  332. if (this.queryType != "job") {
  333. item1.disabled = true;
  334. }
  335. ArrData.forEach((item2) => {
  336. if (item1.AuthId == item2.AuthId && item1.Type != 1) {
  337. item1.disabled = false;
  338. }
  339. });
  340. });
  341. this.toTree();
  342. },
  343. //获取点击目标
  344. handleNodeClick (data) {
  345. // this.toTree();
  346. const arr = this.$store.getters.authArrs;
  347. arr.push(data);
  348. const datas = _.unionBy(arr, "AuthId");
  349. const newDatas = _.cloneDeep(datas);
  350. this.$store.dispatch("auth/changeAuthMsg", newDatas);
  351. this.$store.dispatch("auth/changeAuthArrs", datas);
  352. this.$store.dispatch("auth/changeAuthId", data.AuthId);
  353. },
  354. async setDisabledAll () {
  355. this.AuthArrList.forEach(item => {
  356. item.disabled = true;
  357. })
  358. }
  359. },
  360. };
  361. </script>
  362. <style lang="scss">
  363. @import "./permissiontree.scss";
  364. </style>