dynamicTable.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <template>
  2. <div>
  3. <el-container>
  4. <el-aside width="300px">
  5. <tree @check-node="(res)=>{checkNode = res}" />
  6. </el-aside>
  7. <el-container>
  8. <el-main>
  9. <el-tabs v-model="active" type="border-card">
  10. <div v-if="!active || checkNode.length==0" class="tips">空空哒哟~</div>
  11. <!-- 部门tabs -->
  12. <template v-for="node in checkNode">
  13. <el-tab-pane
  14. v-if="node.id!=-1"
  15. :key="node.id"
  16. :label="node.name"
  17. :name="node.id.toString()"
  18. v-loading="loading.childrenActive"
  19. >
  20. <!-- 岗位tabs -->
  21. <el-tabs
  22. v-model="childrenActive"
  23. editable
  24. @edit="handleTabsEdit"
  25. @tab-click="childrenTabClick"
  26. >
  27. <div v-if="!childrenActive || childrenNode.length==0" class="tips">空空哒哟~</div>
  28. <el-tab-pane
  29. v-for="children in childrenNode"
  30. :key="children.id"
  31. :label="children.name"
  32. :name="children.id.toString()"
  33. >
  34. <div class="userTableHandle">
  35. <el-button type="primary" size="small" @click="visible.dialog=true">添加</el-button>
  36. </div>
  37. <!-- 用户table -->
  38. <el-table
  39. :data="userTableData"
  40. style="width: 100%"
  41. v-loading="loading.userTableData"
  42. border
  43. >
  44. <el-table-column prop="id" label="ID" width="180"></el-table-column>
  45. <el-table-column prop="username" label="姓名" width="180"></el-table-column>
  46. <el-table-column prop="email" label="邮箱"></el-table-column>
  47. </el-table>
  48. </el-tab-pane>
  49. </el-tabs>
  50. </el-tab-pane>
  51. </template>
  52. </el-tabs>
  53. <!-- 用户管理 -->
  54. <el-dialog title="用户管理" :visible.sync="visible.dialog" width="650px">
  55. <transfer
  56. :jobName="jobs.activeTabName"
  57. :users="userTableData"
  58. :visible="visible.dialog"
  59. />
  60. </el-dialog>
  61. </el-main>
  62. <el-footer>Footer</el-footer>
  63. </el-container>
  64. </el-container>
  65. </div>
  66. </template>
  67. <script>
  68. import { addJob, getJob, delJob } from "@/Api/jobs";
  69. import { getUsers } from "@/Api/user";
  70. export default {
  71. name: "home",
  72. components: {
  73. tree: () => import("./components/tree"),
  74. transfer: () => import("./components/transfer")
  75. },
  76. data() {
  77. return {
  78. checkNode: [],
  79. active: "",
  80. childrenNode: [],
  81. childrenActive: "",
  82. jobs: {
  83. activeTabName: ""
  84. },
  85. dept: {
  86. //部门信息
  87. id: "",
  88. name: ""
  89. },
  90. loading: {
  91. active: false,
  92. childrenActive: false,
  93. userTableData: false
  94. },
  95. visible: {
  96. dialog: false
  97. },
  98. userTableData: [{ id: 1, username: "张三", email: "111@qq.com" }]
  99. };
  100. },
  101. watch: {
  102. //勾选的node 部门node
  103. checkNode(val, oldval) {
  104. // console.log(val);
  105. this.active =
  106. val.length > 0
  107. ? val[0].id == -1
  108. ? val.length > 1
  109. ? val[1].id.toString()
  110. : ""
  111. : val[0].id.toString()
  112. : "";
  113. },
  114. //初始化岗位默认选中
  115. childrenNode(val) {
  116. this.jobs.activeTabName = val.length == 0 ? "" : val[0].name;
  117. this.childrenActive = val.length == 0 ? "" : val[0].id.toString();
  118. },
  119. //选中的部门改变
  120. active(val) {
  121. // console.log(val);
  122. if (this.checkNode.length > 0 && val != "") {
  123. this.initJobTab(val);
  124. }
  125. },
  126. //选中的岗位改变
  127. childrenActive(val) {
  128. this.initUserDetail(val);
  129. },
  130. "visible.dialog"(val) {
  131. if (val) {
  132. console.log();
  133. }
  134. }
  135. },
  136. methods: {
  137. //操作tab
  138. handleTabsEdit(targetName, action) {
  139. // console.log(targetName, action);
  140. if (action === "add") {
  141. // 插入tab
  142. this.$prompt("请输入岗位名字", "增加岗位", {
  143. confirmButtonText: "确定",
  144. cancelButtonText: "取消"
  145. })
  146. .then(({ value }) => {
  147. let data = {
  148. name: value,
  149. dept_id: this.active
  150. };
  151. this.loading.childrenActive = true;
  152. addJob(data).then(res => {
  153. console.log(res);
  154. this.$message({
  155. type: "success",
  156. message: `增加 ${value} 部门成功`,
  157. duration: 1000
  158. });
  159. this.loading.childrenActive = false;
  160. this.initJobTab(this.active);
  161. });
  162. console.log(value);
  163. })
  164. .catch(e => {
  165. console.log("取消增加岗位", e);
  166. });
  167. } else if (action === "remove") {
  168. this.$confirm("此操作将永久删除该岗位, 是否继续?", "提示", {
  169. confirmButtonText: "确定",
  170. cancelButtonText: "取消",
  171. type: "warning"
  172. })
  173. .then(value => {
  174. // console.log(targetName);
  175. let data = {
  176. id: targetName
  177. };
  178. this.loading.childrenActive = true;
  179. delJob(data).then(res => {
  180. console.log("删除成功", res);
  181. this.$message({
  182. type: "success",
  183. message: "删除成功!"
  184. });
  185. this.loading.childrenActive = false;
  186. this.initJobTab(this.active);
  187. });
  188. })
  189. .catch(() => {
  190. this.$message({
  191. type: "info",
  192. message: "已取消删除"
  193. });
  194. });
  195. }
  196. },
  197. //初始化岗位tab
  198. initJobTab(dept_id) {
  199. let params = {
  200. dept_id
  201. };
  202. this.loading.childrenActive = true;
  203. getJob(params)
  204. .then(res => {
  205. console.log("查询岗位", res);
  206. this.childrenNode = res.data.result.map(v => {
  207. return {
  208. id: v.job,
  209. name: v.job__name
  210. };
  211. });
  212. this.$message({
  213. type: "success",
  214. message: res.data.message,
  215. duration: 1000
  216. });
  217. this.loading.childrenActive = false;
  218. })
  219. .catch(e => {
  220. this.$message({
  221. type: "error",
  222. message: "查询失败",
  223. duration: 1000
  224. });
  225. this.loading.childrenActive = false;
  226. });
  227. },
  228. //初始化用户详情,岗位空则查询全部
  229. async initUserDetail(job_id = undefined) {
  230. let params = job_id ? { job_id } : {};
  231. await getUsers(params).then(res => {
  232. this.userTableData = res.data.result;
  233. this.$message({
  234. type: "success",
  235. message: res.data.message,
  236. duration: 1000
  237. });
  238. });
  239. this.loading.userTableData = false;
  240. },
  241. //点击岗位tab
  242. childrenTabClick(tab) {
  243. this.jobs.activeTabName = tab.label;
  244. }
  245. },
  246. directives: {
  247. /**
  248. * todo:权限控制 v-permission
  249. */
  250. permission: {
  251. bind(el, binding) {
  252. console.log("绑定", el, binding);
  253. },
  254. inserted(el, binding) {
  255. console.log("插入父节点", el, binding);
  256. }
  257. }
  258. }
  259. };
  260. </script>
  261. <style lang="less" scoped>
  262. .el-container {
  263. height: 70vh;
  264. .tips {
  265. color: #ccc;
  266. text-align: center;
  267. }
  268. .el-header,
  269. .el-footer {
  270. background-color: #b3c0d1;
  271. color: #333;
  272. text-align: center;
  273. line-height: 60px;
  274. }
  275. .el-aside {
  276. // background-color: #d3dce6;
  277. // color: #333;
  278. }
  279. .el-main {
  280. background-color: #e9eef3;
  281. color: #333;
  282. .userTableHandle {
  283. .el-button {
  284. float: right;
  285. margin-bottom: 5px;
  286. }
  287. }
  288. }
  289. }
  290. </style>