AdwebThemeListCopy.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. <template>
  2. <div class="p-2">
  3. <!--查询区域-->
  4. <div class="jeecg-basic-table-form-container">
  5. <a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
  6. <a-row :gutter="24" />
  7. </a-form>
  8. </div>
  9. <!--引用表格-->
  10. <!-- <AdwebThemeCList></AdwebThemeCList>-->
  11. <BasicTable @register="registerTable" :rowSelection="rowSelection">
  12. <!--插槽:table标题-->
  13. <template #tableTitle>
  14. <a-button type="primary" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
  15. <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
  16. <j-upload-button type="primary" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
  17. <a-dropdown v-if="selectedRowKeys.length > 0">
  18. <template #overlay>
  19. <a-menu>
  20. <a-menu-item key="1" @click="batchHandleDelete">
  21. <Icon icon="ant-design:delete-outlined" />
  22. 删除
  23. </a-menu-item>
  24. </a-menu>
  25. </template>
  26. <a-button
  27. >批量操作
  28. <Icon icon="mdi:chevron-down" />
  29. </a-button>
  30. </a-dropdown>
  31. <!-- 高级查询 -->
  32. <super-query :config="superQueryConfig" @search="handleSuperQuery" />
  33. </template>
  34. <!--操作栏-->
  35. <template #action="{ record }">
  36. <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)" />
  37. </template>
  38. <template #bodyCell="{ column, record, index, text }"> </template>
  39. </BasicTable>
  40. <!-- 表单区域 -->
  41. <AdwebThemeModal ref="registerModal" @success="handleSuccess" />
  42. </div>
  43. </template>
  44. <script lang="ts" name="adweb-adwebTheme" setup>
  45. import { reactive, ref } from 'vue';
  46. import { BasicTable, TableAction } from '/@/components/Table';
  47. import { useListPage } from '/@/hooks/system/useListPage';
  48. import { columns, superQuerySchema } from './AdwebTheme.data';
  49. import { batchDelete, deleteOne, getExportUrl, getImportUrl, list } from './AdwebTheme.api';
  50. import AdwebThemeModal from './components/AdwebThemeModal.vue';
  51. import { useUserStore } from '/@/store/modules/user';
  52. const formRef = ref();
  53. const queryParam = reactive<any>({});
  54. const toggleSearchStatus = ref<boolean>(false);
  55. const registerModal = ref();
  56. const userStore = useUserStore();
  57. //注册table数据
  58. const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
  59. tableProps: {
  60. title: 'adweb主题库',
  61. api: list,
  62. columns,
  63. canResize: false,
  64. useSearchForm: false,
  65. actionColumn: {
  66. width: 120,
  67. fixed: 'right',
  68. },
  69. beforeFetch: (params) => {
  70. return Object.assign(params, queryParam);
  71. },
  72. },
  73. exportConfig: {
  74. name: 'adweb主题库',
  75. url: getExportUrl,
  76. params: queryParam,
  77. },
  78. importConfig: {
  79. url: getImportUrl,
  80. success: handleSuccess,
  81. },
  82. });
  83. const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] =
  84. tableContext;
  85. const labelCol = reactive({
  86. xs: 24,
  87. sm: 4,
  88. xl: 6,
  89. xxl: 4,
  90. });
  91. const wrapperCol = reactive({
  92. xs: 24,
  93. sm: 20,
  94. });
  95. // 高级查询配置
  96. const superQueryConfig = reactive(superQuerySchema);
  97. /**
  98. * 高级查询事件
  99. */
  100. function handleSuperQuery(params) {
  101. Object.keys(params).map((k) => {
  102. queryParam[k] = params[k];
  103. });
  104. searchQuery();
  105. }
  106. /**
  107. * 新增事件
  108. */
  109. function handleAdd() {
  110. registerModal.value.disableSubmit = false;
  111. registerModal.value.add();
  112. }
  113. /**
  114. * 编辑事件
  115. */
  116. function handleEdit(record: Recordable) {
  117. registerModal.value.disableSubmit = false;
  118. registerModal.value.edit(record);
  119. }
  120. /**
  121. * 详情
  122. */
  123. function handleDetail(record: Recordable) {
  124. registerModal.value.disableSubmit = true;
  125. registerModal.value.edit(record);
  126. }
  127. /**
  128. * 删除事件
  129. */
  130. async function handleDelete(record) {
  131. await deleteOne({ id: record.id }, handleSuccess);
  132. }
  133. /**
  134. * 批量删除事件
  135. */
  136. async function batchHandleDelete() {
  137. await batchDelete({ ids: selectedRowKeys.value }, handleSuccess);
  138. }
  139. /**
  140. * 成功回调
  141. */
  142. function handleSuccess() {
  143. (selectedRowKeys.value = []) && reload();
  144. }
  145. /**
  146. * 操作栏
  147. */
  148. function getTableAction(record) {
  149. return [
  150. {
  151. label: '编辑',
  152. onClick: handleEdit.bind(null, record),
  153. },
  154. ];
  155. }
  156. /**
  157. * 下拉操作栏
  158. */
  159. function getDropDownAction(record) {
  160. return [
  161. {
  162. label: '详情',
  163. onClick: handleDetail.bind(null, record),
  164. },
  165. {
  166. label: '删除',
  167. popConfirm: {
  168. title: '是否确认删除',
  169. confirm: handleDelete.bind(null, record),
  170. placement: 'topLeft',
  171. },
  172. },
  173. ];
  174. }
  175. /**
  176. * 查询
  177. */
  178. function searchQuery() {
  179. reload();
  180. }
  181. /**
  182. * 重置
  183. */
  184. function searchReset() {
  185. formRef.value.resetFields();
  186. selectedRowKeys.value = [];
  187. //刷新数据
  188. reload();
  189. }
  190. </script>
  191. <style lang="less" scoped>
  192. .jeecg-basic-table-form-container {
  193. padding: 0;
  194. .table-page-search-submitButtons {
  195. display: block;
  196. margin-bottom: 24px;
  197. white-space: nowrap;
  198. }
  199. .query-group-cust {
  200. min-width: 100px !important;
  201. }
  202. .query-group-split-cust {
  203. width: 30px;
  204. display: inline-block;
  205. text-align: center;
  206. }
  207. .ant-form-item:not(.ant-form-item-with-help) {
  208. margin-bottom: 16px;
  209. height: 32px;
  210. }
  211. :deep(.ant-picker),
  212. :deep(.ant-input-number) {
  213. width: 100%;
  214. }
  215. }
  216. </style>