index.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <div class="application scroll-y">
  3. <div class="application-head flex">
  4. <div class="manageTitle">账号组管理</div>
  5. <div class="flex-wrap">
  6. <Search @clear="clear" @search="search" />
  7. <el-button size="default" @click="addApp" plain>新增</el-button>
  8. </div>
  9. </div>
  10. <div class="application-content">
  11. <Table :tableHeader="tableHeader" @btnClick="btnClick" :tableBtnGroup="tableBtnGroup" :tableData="tableData" />
  12. </div>
  13. <!--删除弹框-->
  14. <Dialog :flag="flag" msgTitle="删除账号组" type="del" :delName="title" @delRest="delRest" @delRemove="remove" />
  15. <!--新增/编辑-->
  16. <Dialog :flag="editDialogVisible" :msgTitle="editDialogTitle" @submitForm="submitForm(ruleFormRef)" @resetForm="resetForm(ruleFormRef)" :show-flag="true">
  17. <el-form ref="ruleFormRef" :model="ruleForm" label-width="110px" class="demo-ruleForm">
  18. <el-form-item label="账号组名称" prop="appName">
  19. <el-input v-model="ruleForm.appName" size="default" placeholder="请输入账号组名称" />
  20. </el-form-item>
  21. <el-form-item label="账号组描述" prop="appDesc">
  22. <el-input v-model="ruleForm.appDesc" size="default" type="textarea" :rows="3" placeholder="请输入账号组描述" />
  23. </el-form-item>
  24. </el-form>
  25. </Dialog>
  26. </div>
  27. </template>
  28. <script setup lang="ts">
  29. import { ref, reactive } from "vue";
  30. import { ElMessage, FormInstance, FormRules } from "element-plus";
  31. import Table from "@/components/tableTemp/index.vue";
  32. import Search from "@/components/search/index.vue";
  33. const ruleFormRef = ref<FormInstance>();
  34. const tableHeader = [
  35. { label: "账号组名称", key: "appName" },
  36. { label: "账号组描述", key: "appDesc" },
  37. ];
  38. const tableData = ref([
  39. {
  40. id: 1,
  41. appName: "11",
  42. appId: "22",
  43. appDesc: "33",
  44. },
  45. {
  46. id: 2,
  47. appName: "11",
  48. appId: "22",
  49. appDesc: "33",
  50. },
  51. ]);
  52. const tableBtnGroup = [
  53. {
  54. name: "编辑",
  55. className: "editBtn",
  56. param: "edit",
  57. },
  58. {
  59. name: "删除",
  60. className: "delBtn",
  61. param: "del",
  62. },
  63. ];
  64. const flag = ref(false);
  65. const title = ref("");
  66. const dT = ref("add");
  67. const editDialogVisible = ref(false);
  68. const editDialogTitle = ref("新增账号组");
  69. const ruleForm = reactive({
  70. appName: "",
  71. appDesc: "",
  72. appId: "",
  73. });
  74. const rowIndex = ref(1);
  75. const search = (val) => {
  76. ElMessage.success(`搜索成功:${val}`);
  77. };
  78. const clear = () => {
  79. ElMessage.success(`清除`);
  80. };
  81. const btnClick = (index, row, param) => {
  82. rowIndex.value = index;
  83. if (param == "del") {
  84. flag.value = true;
  85. title.value = row.appName;
  86. } else {
  87. dT.value = "edit";
  88. editDialogVisible.value = true;
  89. editDialogTitle.value = "编辑账号组";
  90. ruleForm.appDesc = row.appDesc;
  91. ruleForm.appName = row.appName;
  92. ruleForm.appId = row.appId;
  93. }
  94. };
  95. const delRest = () => {
  96. flag.value = false;
  97. };
  98. const remove = () => {
  99. tableData.value.splice(rowIndex.value, 1);
  100. ElMessage.success("删除成功");
  101. flag.value = false;
  102. };
  103. const addApp = () => {
  104. editDialogVisible.value = true;
  105. editDialogTitle.value = "新增账号组";
  106. dT.value = "add";
  107. ruleForm.appDesc = "";
  108. ruleForm.appName = "";
  109. ruleForm.appId = "";
  110. };
  111. const submitForm = async (formEl: FormInstance | undefined) => {
  112. if (!formEl) return;
  113. await formEl.validate((valid, fields) => {
  114. if (valid) {
  115. if (dT.value == "add") {
  116. const len = tableData.value.length;
  117. tableData.value.push({
  118. id: len + 1,
  119. appName: ruleForm.appName,
  120. appDesc: ruleForm.appDesc,
  121. appId: ruleForm.appId,
  122. });
  123. ElMessage.success("新增成功");
  124. } else {
  125. tableData.value[rowIndex.value] = {
  126. id: tableData.value[rowIndex.value].id,
  127. appName: ruleForm.appName,
  128. appDesc: ruleForm.appDesc,
  129. appId: ruleForm.appId,
  130. };
  131. ElMessage.success("编辑成功");
  132. }
  133. editDialogVisible.value = false;
  134. } else {
  135. console.log("error submit!", fields);
  136. }
  137. });
  138. };
  139. const resetForm = (formEl: FormInstance | undefined) => {
  140. if (!formEl) return;
  141. formEl.resetFields();
  142. editDialogVisible.value = false;
  143. };
  144. </script>
  145. <style lang="scss" scoped>
  146. .application {
  147. &-content {
  148. margin-top: 24px;
  149. height: calc(100% - 56px);
  150. }
  151. }
  152. </style>