tree_and_table.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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"></el-tab-pane>
  10. <el-tab-pane label="岗位" name="job">
  11. <div>
  12. <el-button type="primary" @click="postJob">新增</el-button>
  13. <el-table :data="tableData" style="width: 100%">
  14. <el-table-column prop="name" label="姓名" width="180"></el-table-column>
  15. <el-table-column label="操作">
  16. <template slot-scope="scope" width="200px0">
  17. <el-button @click="deleteJob(scope.row.id)" type="danger">删除</el-button>
  18. </template>
  19. </el-table-column>
  20. </el-table>
  21. </div>
  22. </el-tab-pane>
  23. </el-tabs>
  24. </el-main>
  25. </el-container>
  26. <el-dialog :title="dialog.title" :visible="dialog.visible" @close="handleCancel">
  27. <el-form :model="dialog" label-width="120px" ref="form">
  28. <el-form-item label="名字" :label-col="{ span: 4 }" :wrapper-col="{ span: 20 }" prop="name">
  29. <el-input v-model="dialog.name" />
  30. </el-form-item>
  31. </el-form>
  32. <template slot="footer">
  33. <el-button @click="handleCancel">取消</el-button>
  34. <el-button type="primary" @click="dataFormSubmitHandle">保存</el-button>
  35. </template>
  36. </el-dialog>
  37. </el-container>
  38. </template>
  39. <script>
  40. import tree from "@/views/treeAndTable/components/tree";
  41. import { getJob, postJob } from "@/api/treeAndTable.js";
  42. export default {
  43. name: "tree_table",
  44. components: {
  45. tree,
  46. },
  47. data() {
  48. return {
  49. dept_id: 0,
  50. tableData: [],
  51. dialog: {
  52. type: 0, // 1是人员,2是岗位
  53. title: "",
  54. name: "",
  55. visible: false,
  56. },
  57. };
  58. },
  59. methods: {
  60. // eslint-disable-next-line no-unused-vars
  61. getTreeDeptId: function (data, node, that) {
  62. console.log(data);
  63. this.dept_id = data.data.id;
  64. },
  65. postJob: function () {
  66. this.dialog.visible = true;
  67. this.dialog.title = "新增";
  68. this.dialog.type = 2;
  69. },
  70. // 岗位标签页的删除按钮
  71. // eslint-disable-next-line no-unused-vars
  72. deleteJob: function (id) {},
  73. // tabs点击的时候获取当前标签页下的所有信息
  74. tabClick: function (tabNode) {
  75. if (tabNode.name == "job") {
  76. getJob({
  77. dept_id: this.dept_id,
  78. }).then((res) => {
  79. this.tableData = res.data;
  80. });
  81. }
  82. },
  83. // 弹窗的取消按钮
  84. handleCancel: function () {
  85. this.dialog.type = 0;
  86. this.dialog.name = "";
  87. this.dialog.visible = false;
  88. },
  89. dataFormSubmitHandle: function () {
  90. if (this.dialog.type == 2) {
  91. postJob({
  92. dept_id: this.dept_id,
  93. name: this.dialog.name,
  94. }).then((res) => {
  95. this.dialog.visible = false;
  96. if (res.data.msg == "success") {
  97. this.$message({
  98. message: "新增岗位成功",
  99. type: "success",
  100. });
  101. this.tabClick({ name: "job" });
  102. }
  103. });
  104. }
  105. },
  106. },
  107. };
  108. </script>