snippetTable.js 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. import { genTableColumnSnippet } from "./snippetTableColumn";
  2. export const genTableSnippet = (headers = "getList") => {
  3. return `<template>
  4. <div class="改成你的组件名-container">
  5. <vab-query-form>
  6. <vab-query-form-left-panel :span="12">
  7. <el-button icon="el-icon-plus" type="primary">添加</el-button>
  8. <el-button icon="el-icon-edit" type="warning">修改</el-button>
  9. <el-button
  10. icon="el-icon-delete"
  11. type="danger"
  12. @click="handleDelete"
  13. >批量删除
  14. </el-button
  15. >
  16. </vab-query-form-left-panel>
  17. <vab-query-form-right-panel :span="12">
  18. <el-form :inline="true" :model="queryForm" @submit.native.prevent>
  19. <el-form-item>
  20. <el-input
  21. v-model.trim="queryForm.${headers[0].key}"
  22. placeholder="请输入查询条件"
  23. clearable
  24. />
  25. </el-form-item>
  26. <el-form-item>
  27. <el-button
  28. icon="el-icon-search"
  29. type="primary"
  30. @click="queryData"
  31. >查询
  32. </el-button
  33. >
  34. </el-form-item>
  35. </el-form>
  36. </vab-query-form-right-panel>
  37. </vab-query-form>
  38. <el-table
  39. v-loading="listLoading"
  40. :height="height"
  41. :data="list"
  42. :element-loading-text="elementLoadingText"
  43. @selection-change="setSelectRows"
  44. >
  45. <el-table-column show-overflow-tooltip type="selection"></el-table-column>
  46. ${genTableColumnSnippet(headers)}
  47. <el-table-column show-overflow-tooltip label="操作" width="200">
  48. <template #default="{row}">
  49. <el-button type="text" @click="editList(row)"
  50. >编辑
  51. </el-button
  52. >
  53. <el-button type="text" @click="tableDelete(row)"
  54. >删除
  55. </el-button
  56. >
  57. </template>
  58. </el-table-column>
  59. </el-table>
  60. <el-pagination
  61. :background="background"
  62. :current-page="queryForm.pageNo"
  63. :page-size="queryForm.pageSize"
  64. :layout="layout"
  65. :total="total"
  66. @size-change="handleSizeChange"
  67. @current-change="handleCurrentChange"
  68. ></el-pagination>
  69. </div>
  70. </template>
  71. <script>
  72. import { getList } from "@/api/table";
  73. export default {
  74. name: "这里会报错,记住,你的view名称与文件夹名称相同不要忘了首字母大写,且唯一",
  75. data() {
  76. return {
  77. list: null,
  78. listLoading: true,
  79. layout: "total, sizes, prev, pager, next, jumper",
  80. total: 0,
  81. background: true,
  82. height: 0,
  83. selectRows: "",
  84. elementLoadingText: "正在加载...",
  85. queryForm: {
  86. pageNo: 1,
  87. pageSize: 10,
  88. ${headers[0].key} : "",
  89. }
  90. };
  91. },
  92. created() {
  93. this.fetchData();
  94. this.height = this.$baseTableHeight(1);
  95. },
  96. methods: {
  97. setSelectRows(val) {
  98. this.selectRows = val;
  99. },
  100. editList(row) {
  101. },
  102. handleDelete() {
  103. if (this.selectRows.length > 0) {
  104. const ids = this.selectRows.map(item => item.id).join();
  105. this.$baseConfirm(
  106. "你确定要删除选中项吗",
  107. null,
  108. () => {
  109. alert(ids);
  110. },
  111. () => {
  112. alert("点击了取消");
  113. },
  114. );
  115. } else {
  116. this.$baseMessage("未选中任何行", "error");
  117. return false;
  118. }
  119. },
  120. tableDelete(row) {
  121. alert(row.id);
  122. },
  123. handleSizeChange(val) {
  124. this.queryForm.pageSize = val;
  125. this.fetchData();
  126. },
  127. handleCurrentChange(val) {
  128. this.queryForm.pageNo = val;
  129. this.fetchData();
  130. },
  131. queryData() {
  132. this.queryForm.pageNo = 1;
  133. this.fetchData();
  134. },
  135. async fetchData() {
  136. this.listLoading = true;
  137. const { data, totalCount }= await getList(this.queryForm);
  138. this.list = data;
  139. this.total = totalCount;
  140. setTimeout(() => {
  141. this.listLoading = false;
  142. }, 300);
  143. },
  144. },
  145. };
  146. </script>
  147. <style lang="scss" scoped></style>
  148. `;
  149. };