| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- <template>
- <div>
- <BasicTable @register="registerTable">
- <template #bodyCell="{ column, record }">
- <% for(var i = 0; i < configList.~size; i++) { %>
- <% if(configList[i].dictTypeCode!=null) {%>
- <template v-if="column.key === '${configList[i].fieldNameCamelCase}'">
- <Tag :color="formatDictColor(${configList[i].fieldNameCamelCase}Options, record.${configList[i].fieldNameCamelCase})">
- {{ formatDictValue(${configList[i].fieldNameCamelCase}Options, record.${configList[i].fieldNameCamelCase}) }}
- </Tag>
- </template>
- <% } %>
- <% } %>
- <template v-if="column.key === 'action'">
- <TableAction
- :actions="[
- {
- auth: '${backendModuleName}:${busName}:query',
- icon: 'icon-eye|iconfont',
- tooltip: '查看',
- label: '查看',
- onClick: handleView.bind(null, record),
- },
- {
- auth: '${backendModuleName}:${busName}:edit',
- icon: 'icon-edit|iconfont',
- tooltip: '编辑',
- label: '编辑',
- onClick: handleEdit.bind(null, record),
- },
- {
- auth: '${backendModuleName}:${busName}:remove',
- icon: 'icon-delete|iconfont',
- tooltip: '删除',
- label: '删除',
- color: 'error',
- popConfirm: {
- title: '是否确认删除',
- placement: 'left',
- confirm: handleDelete.bind(null, record),
- }
- },
- ]"
- />
- </template>
- </template>
- <template #toolbar>
- <Button v-auth="['${backendModuleName}:${busName}:add']" type="primary" @click="handleCreate" preIcon="icon-plus|iconfont"> 新增 </Button>
- <Button v-auth="['${backendModuleName}:${busName}:remove']" type="primary" danger @click="handleDelete(null)" preIcon="icon-delete|iconfont">
- 批量删除
- </Button>
- </template>
- </BasicTable>
- <FormDrawer @register="registerDrawer" @success="handleSuccess" />
- <ViewDrawer @register="registerDrawerView" @success="handleSuccess" />
- </div>
- </template>
- <script lang="ts" setup>
- import { onBeforeMount, ref } from 'vue';
- import { Tag } from 'ant-design-vue';
- import { Button } from '/@/components/Button';
- import { BasicTable, useTable, TableAction } from '/@/components/Table';
- // import { useModal } from '/@/components/Modal';
- import { useMessage } from '/@/hooks/web/useMessage';
- import FormDrawer from './formDrawer.vue';
- import ViewDrawer from './viewDrawer.vue';
- import { columns, searchFormSchema } from './data';
- import { ${frontModuleName}${busNameFirstUpper}QueryPage, ${frontModuleName}${busNameFirstUpper}Remove } from '/@/api/${frontModuleName}/${frontModuleName}${busNameFirstUpper}Api';
- import { listDictModel } from '/@/api/common';
- import { formatDictColor, formatDictValue, commonDict } from '/@/utils';
- import { useDrawer } from '/@/components/Drawer';
- <% for(var i = 0; i < configList.~size; i++) { %>
- <% if(configList[i].dictTypeCode!=null) {%>
- const ${configList[i].fieldNameCamelCase}Options = ref();
- <% } %>
- <% } %>
- onBeforeMount(async () => {
- <% for(var i = 0; i < configList.~size; i++) { %>
- <% if(configList[i].dictTypeCode!=null) {%>
- ${configList[i].fieldNameCamelCase}Options.value = await listDictModel({ dictCode: '${configList[i].dictTypeCode}' });
- <% } %>
- <% } %>
- });
- const { createConfirm, createMessage } = useMessage();
- // const [registerModal, { openModal }] = useModal();
- const [registerDrawer, { openDrawer }] = useDrawer();
- const [registerDrawerView, { openDrawer: openDrawerView }] = useDrawer();
- const tableSort = ref([
- {
- field: 'create_time',
- direction: 'DESC',
- },
- ]) as any;
- const [registerTable, { reload, getSelectRowKeys }] = useTable({
- title: '门户列表 ',
- api: ${frontModuleName}${busNameFirstUpper}QueryPage,
- rowKey: '${id}',
- columns,
- showIndexColumn: true,
- rowSelection: { type: 'checkbox' },
- formConfig: {
- labelWidth: 120,
- schemas: searchFormSchema,
- autoSubmitOnEnter: true,
- baseColProps: { xs: 24, sm: 12, md: 12, lg: 8 },
- resetButtonOptions: {
- preIcon: 'icon-delete|iconfont',
- },
- submitButtonOptions: {
- preIcon: 'icon-search|iconfont',
- },
- },
- useSearchForm: true,
- bordered: true,
- actionColumn: {
- width: 200,
- title: '操作',
- dataIndex: 'action',
- },
- beforeFetch: handleBeforeFetch,
- sortFn: handleSortFn,
- });
- // 详情按钮事件
- function handleView(record: Recordable) {
- console.log(record);
- openDrawerView(true, {
- record,
- });
- }
- // 新增按钮事件
- function handleCreate() {
- openDrawer(true, {
- isUpdate: false,
- });
- }
- // 编辑按钮事件
- function handleEdit(record: Recordable) {
- openDrawer(true, {
- record,
- isUpdate: true,
- });
- }
- // 删除按钮事件
- async function handleDelete(record: Recordable) {
- if (record) {
- await ${frontModuleName}${busNameFirstUpper}Remove([record.${id}]);
- createMessage.success('删除成功!');
- await reload();
- } else {
- createConfirm({
- content: '你确定要删除?',
- iconType: 'warning',
- onOk: async () => {
- const keys = getSelectRowKeys();
- await ${frontModuleName}${busNameFirstUpper}Remove(keys);
- createMessage.success('删除成功!');
- await reload();
- },
- });
- }
- }
- // 表格点击字段排序
- function handleSortFn(sortInfo) {
- if (sortInfo?.order && sortInfo?.columnKey) {
- // 默认单列排序
- tableSort.value = [
- {
- field: sortInfo.columnKey,
- direction: sortInfo.order.replace(/(\w+)(end)/g, '$1').toUpperCase(),
- },
- ];
- }
- }
- // 表格请求之前,对参数进行处理, 添加默认 排序
- function handleBeforeFetch(params) {
- return { ...params, orders: tableSort.value };
- }
- // 弹窗回调事件
- async function handleSuccess({ isUpdate, values }) {
- console.log(isUpdate);
- console.log(values);
- await reload();
- }
- </script>
|