system.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <div>
  3. <el-row>
  4. <el-col class="btn-top" :span="12">
  5. <el-button type="primary" @click="saveData">设置范围</el-button>
  6. <el-button @click="clearData">清空</el-button>
  7. </el-col>
  8. </el-row>
  9. <el-tree
  10. :data="treeList"
  11. ref="tree"
  12. @check="checkChange"
  13. show-checkbox
  14. :default-checked-keys="choiceCheckList"
  15. :default-expanded-keys="choiceCheckList"
  16. node-key="code"
  17. :props="defaultProps"
  18. >
  19. </el-tree>
  20. </div>
  21. </template>
  22. <script>
  23. import {
  24. major_sys,
  25. set_scope,
  26. get_scope,
  27. set_major_sys_scope,
  28. } from "@/api/workScope.js";
  29. export default {
  30. data() {
  31. return {
  32. treeList: [],
  33. choiceCheckList: [], //选中的树
  34. parentChecckList: [], //专业id
  35. defaultProps: {
  36. children: "children",
  37. label: "aliasName",
  38. },
  39. };
  40. },
  41. methods: {
  42. checkChange(node, choiceKey, v) {
  43. const list = [];
  44. let parentList = [];
  45. choiceKey.checkedNodes.forEach((item) => {
  46. if (item.children) {
  47. parentList.push({
  48. code: item.code,
  49. type: "major",
  50. });
  51. } else {
  52. list.push({
  53. code: item.code,
  54. type: "sys",
  55. });
  56. }
  57. });
  58. this.choiceCheckList = list;
  59. choiceKey.halfCheckedKeys.forEach((code) => {
  60. parentList.push({
  61. code: code,
  62. type: "major",
  63. });
  64. });
  65. this.parentChecckList = [...parentList];
  66. console.log(this.parentChecckList);
  67. },
  68. majorSys() {
  69. major_sys({ target: "rtn" }).then((res) => {
  70. this.treeList = res.rtn;
  71. this.readData();
  72. });
  73. },
  74. readData() {
  75. const data = { type: "sys", target: "rtn" };
  76. get_scope(data).then((res) => {
  77. this.choiceCheckList = res.rtn.map((a) => {
  78. return a.code;
  79. });
  80. });
  81. },
  82. // 保存数据
  83. saveData() {
  84. let data = {
  85. type: "sys",
  86. target: "action",
  87. codes: [...this.choiceCheckList, ...this.parentChecckList],
  88. };
  89. set_major_sys_scope(data).then(() => {
  90. this.readData();
  91. });
  92. },
  93. //清空
  94. clearData() {
  95. this.$confirm("是否继续?", "提示", {
  96. confirmButtonText: "确定",
  97. cancelButtonText: "取消",
  98. type: "warning",
  99. })
  100. .then(() => {
  101. this.choiceCheckList = [];
  102. this.$refs.tree.setCheckedKeys([]);
  103. this.saveData();
  104. this.$message({
  105. type: "success",
  106. message: "删除成功!",
  107. });
  108. })
  109. .catch(() => {
  110. this.$message({
  111. type: "info",
  112. message: "已取消删除",
  113. });
  114. });
  115. },
  116. },
  117. created() {
  118. this.majorSys();
  119. },
  120. };
  121. </script>
  122. <style lang="less" scoped>
  123. .btn-top {
  124. margin-bottom: 12px;
  125. display: flex;
  126. justify-content: flex-end;
  127. }
  128. </style>