tree_and_table.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <template>
  2. <el-container style="height:900px;border: 5px solid #eee">
  3. <el-aside width="25%">
  4. <tree style="height:300px" @nodeClick="getTreeDeptId"></tree>
  5. </el-aside>
  6. <el-container>
  7. <el-main>
  8. <el-tabs value="people" type="border-card" @tab-click="tabClick">
  9. <el-tab-pane label="人员" name="people">
  10. <div>
  11. <el-button type="primary" @click="postUser">新增</el-button>
  12. <el-table :data="tableDataPeople" style="width: 100%">
  13. <el-table-column prop="user_name" label="姓名" width="180"></el-table-column>
  14. <el-table-column prop="jobs" label="岗位" width="180">
  15. <template slot-scope="scope">
  16. <el-tag v-for="(val,index) in scope.row.jobs" :key="index">{{val.job_name}}</el-tag>
  17. </template>
  18. </el-table-column>
  19. <el-table-column label="操作">
  20. <template slot-scope="scope" width="200px0">
  21. <el-button @click="deleteUser(scope.row.id)" type="danger">删除</el-button>
  22. </template>
  23. </el-table-column>
  24. </el-table>
  25. </div>
  26. </el-tab-pane>
  27. <el-tab-pane label="岗位" name="job">
  28. <div>
  29. <el-button type="primary" @click="postJob">新增</el-button>
  30. <el-table :data="tableData" style="width: 100%">
  31. <el-table-column prop="name" label="姓名" width="180"></el-table-column>
  32. <el-table-column label="操作">
  33. <template slot-scope="scope" width="200px0">
  34. <el-button @click="deleteJob(scope.row.id)" type="danger">删除</el-button>
  35. </template>
  36. </el-table-column>
  37. </el-table>
  38. </div>
  39. </el-tab-pane>
  40. </el-tabs>
  41. </el-main>
  42. </el-container>
  43. <el-dialog :title="dialog.title" :visible="dialog.visible" @close="handleCancel">
  44. <el-form :model="dialog" label-width="120px" ref="form">
  45. <el-form-item label="名字" :label-col="{ span: 4 }" :wrapper-col="{ span: 20 }" prop="name">
  46. <el-input v-model="dialog.name" />
  47. </el-form-item>
  48. <el-form-item
  49. label="岗位多选器"
  50. :label-col="{ span: 4 }"
  51. :wrapper-col="{ span: 20 }"
  52. prop="job"
  53. v-show="this.dialog.type==1"
  54. >
  55. <el-select v-model="selectValue" multiple placeholder="请选择">
  56. <el-option v-for="item in tableData" :key="item.id" :label="item.name" :value="item.id"></el-option>
  57. </el-select>
  58. </el-form-item>
  59. </el-form>
  60. <template slot="footer">
  61. <el-button @click="handleCancel">取消</el-button>
  62. <el-button type="primary" @click="dataFormSubmitHandle">保存</el-button>
  63. </template>
  64. </el-dialog>
  65. </el-container>
  66. </template>
  67. <script>
  68. import tree from "@/views/treeAndTable/components/tree";
  69. import {
  70. getJob,
  71. postJob,
  72. deleteJob,
  73. postUser,
  74. getUsers,
  75. deleteUser,
  76. } from "@/api/treeAndTable.js";
  77. export default {
  78. name: "tree_table",
  79. components: {
  80. tree,
  81. },
  82. data() {
  83. return {
  84. dept_id: 0,
  85. tableData: [],
  86. tableDataPeople: [],
  87. dialog: {
  88. type: 0, // 1是人员,2是岗位
  89. title: "",
  90. name: "",
  91. visible: false,
  92. },
  93. selectValue: [],
  94. };
  95. },
  96. methods: {
  97. // eslint-disable-next-line no-unused-vars
  98. getTreeDeptId: function (data, node, that) {
  99. console.log(data);
  100. this.dept_id = data.data.id;
  101. },
  102. postJob: function () {
  103. this.dialog.visible = true;
  104. this.dialog.title = "新增";
  105. this.dialog.type = 2;
  106. },
  107. postUser: function () {
  108. this.dialog.visible = true;
  109. this.dialog.title = "新增人员";
  110. this.dialog.type = 1;
  111. },
  112. // 岗位标签页的删除按钮
  113. // eslint-disable-next-line no-unused-vars
  114. deleteJob: function (id) {
  115. deleteJob(id).then((res) => {
  116. console.log(res);
  117. if (res.status == 204) {
  118. this.$message({
  119. message: "删除岗位成功",
  120. type: "warning",
  121. });
  122. this.tabClick({ name: "job" });
  123. }
  124. });
  125. },
  126. // 人员标签页的删除按钮
  127. deleteUser: function (id) {
  128. deleteUser(id).then((res) => {
  129. console.log(res);
  130. if (res.status == 204) {
  131. this.$message({
  132. message: "删除岗位成功",
  133. type: "warning",
  134. });
  135. this.tabClick({ name: "people" });
  136. }
  137. });
  138. },
  139. // tabs点击的时候获取当前标签页下的所有信息
  140. tabClick: function (tabNode) {
  141. if (tabNode.name == "job") {
  142. getJob({
  143. dept_id: this.dept_id,
  144. }).then((res) => {
  145. console.log("tableData");
  146. console.log(res.data);
  147. this.tableData = res.data;
  148. });
  149. } else if (tabNode.name == "people") {
  150. getUsers({
  151. dept_id: this.dept_id,
  152. }).then((res) => {
  153. console.log(res.data);
  154. this.tableDataPeople = res.data;
  155. });
  156. }
  157. },
  158. // 弹窗的取消按钮
  159. handleCancel: function () {
  160. this.dialog.type = 0;
  161. this.dialog.name = "";
  162. this.dialog.visible = false;
  163. },
  164. dataFormSubmitHandle: function () {
  165. if (this.dialog.type == 2) {
  166. postJob({
  167. dept_id: this.dept_id,
  168. name: this.dialog.name,
  169. }).then((res) => {
  170. this.dialog.visible = false;
  171. if (res.data.msg == "success") {
  172. this.$message({
  173. message: "新增岗位成功",
  174. type: "success",
  175. });
  176. this.tabClick({ name: "job" });
  177. }
  178. });
  179. } else if (this.dialog.type == 1) {
  180. postUser({
  181. dept_job_id: this.selectValue,
  182. name: this.dialog.name,
  183. }).then((res) => {
  184. this.dialog.visible = false;
  185. console.log(res);
  186. this.$message({
  187. message: "新增人员成功",
  188. type: "success",
  189. });
  190. this.tabClick({ name: "people" });
  191. });
  192. }
  193. },
  194. },
  195. };
  196. </script>