| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <template>
- <div>
- <BasicTable
- @register="registerTable"
- @selection-change="handleSelectionChange"
- @row-click="handleRowClick"
- @row-dbClick="handleRowDbClick"
- >
- <template #bodyCell="{ column, record }">
- <template v-if="column.key === 'disable'">
- <Tag :color="record.disable ? 'error' : 'success'">
- {{ commonDict(record.disable, 1) }}
- </Tag>
- </template>
- <template v-if="column.key === 'action'">
- <TableAction
- :actions="[
- {
- auth: ['system:sysDict:edit'],
- icon: 'icon-edit|iconfont',
- tooltip: '编辑',
- onClick: handleEdit.bind(null, record),
- },
- {
- auth: ['system:sysDict:remove'],
- icon: 'icon-delete|iconfont',
- tooltip: '删除',
- color: 'error',
- popConfirm: {
- title: '是否确认删除',
- confirm: handleDelete.bind(null, record),
- },
- },
- ]"
- />
- </template>
- </template>
- <template #toolbar>
- <a-button
- v-auth="['system:sysDict:add']"
- type="primary"
- @click="handleCreate"
- preIcon="icon-plus|iconfont"
- >新增</a-button
- >
- <!-- <a-button
- v-auth="['system:sysDict:export']"
- color="warning"
- @click="handleExport"
- preIcon="ant-design:download-outlined"
- >导出</a-button
- > -->
- <a-button
- v-auth="['system:sysDict:refresh']"
- color="success"
- @click="handleRefresh"
- preIcon="ant-design:redo-outlined"
- >刷新缓存</a-button
- >
- </template>
- </BasicTable>
- <FormModal @register="registerModal" @success="handleSuccess" />
- </div>
- </template>
- <script lang="ts" setup>
- import { onBeforeMount, ref } from 'vue';
- import { Tag } from 'ant-design-vue';
- import { BasicTable, useTable, TableAction } from '/@/components/Table';
- import { useModal } from '/@/components/Modal';
- import { useMessage } from '/@/hooks/web/useMessage';
- import FormModal from './FormModal.vue';
- import { columns, searchFormSchema } from './data';
- // import { fetchList, SysDictRemove, exportList, refresh } from '/@/api/modules/system/sysDictApi';
- import { SysDictQueryList, SysDictRemove } from '/@/api/sys/sysDictApi';
- import { commonDict } from '/@/utils';
- // import { listDictModel, downloadFile } from '/@/api/common';
- import { listDictModel } from '/@/api/common';
- const emit = defineEmits(['dict-change']);
- const sysStatusOptions = ref([]);
- onBeforeMount(async () => {
- const dictSysStatus = await listDictModel({ dictCode: 'sys_status' });
- sysStatusOptions.value = dictSysStatus.data || [];
- });
- const { createMessage, createConfirm } = useMessage();
- const [registerModal, { openModal }] = useModal();
- const [registerTable, { reload, getDataSource, getSelectRowKeys, setSelectedRowKeys }] = useTable(
- {
- title: '字典列表',
- api: SysDictQueryList,
- rowKey: 'dictId',
- columns,
- rowSelection: { type: 'radio' },
- clickToRowSelect: true,
- formConfig: {
- labelWidth: 120,
- schemas: searchFormSchema,
- autoSubmitOnEnter: true,
- baseColProps: { span: 12 },
- resetButtonOptions: {
- preIcon: 'icon-delete|iconfont',
- },
- submitButtonOptions: {
- preIcon: 'icon-search|iconfont',
- },
- },
- showIndexColumn: false,
- useSearchForm: true,
- showTableSetting: true,
- bordered: true,
- actionColumn: {
- auth: ['system:sysDict:edit', 'system:sysDict:remove'],
- width: 80,
- title: '操作',
- dataIndex: 'action',
- },
- afterFetch: handleAfterFetch,
- },
- );
- // 新增按钮事件
- function handleCreate() {
- openModal(true, {
- isUpdate: false,
- });
- }
- // 编辑按钮事件
- function handleEdit(record: Recordable) {
- console.log(record);
- openModal(true, {
- record,
- isUpdate: true,
- });
- }
- // 删除按钮事件
- async function handleDelete(record: Recordable) {
- console.log(record);
- await SysDictRemove([record.dictId]);
- createMessage.success('删除成功!');
- await reload();
- // after delete, select first row
- const list = getDataSource();
- if (list.length > 0) {
- setSelectedRowKeys([list[0].dictId]);
- } else {
- setSelectedRowKeys([]);
- }
- console.log('handleDelete');
- emitDictChange();
- }
- // 导出按钮事件
- // async function handleExport() {
- // createConfirm({
- // iconType: 'warning',
- // title: '提示',
- // content: '确认导出?',
- // onOk: async () => {
- // const params = getForm().getFieldsValue();
- // const filepath = await exportList(params);
- // downloadFile(filepath);
- // },
- // });
- // }
- // 刷新缓存按钮事件
- async function handleRefresh() {
- createConfirm({
- iconType: 'warning',
- title: '提示',
- content: '确认刷新所有数据字典缓存?',
- onOk: async () => {
- // await refresh();
- createMessage.success('刷新成功!');
- },
- });
- }
- // 弹窗回调事件
- async function handleSuccess({ isUpdate, values }) {
- console.log(isUpdate);
- console.log(values);
- await reload();
- if (isUpdate) {
- // after update, select updated row
- setSelectedRowKeys([values.id]);
- } else {
- // after create, select first row
- const list = getDataSource();
- if (list.length > 0) {
- setSelectedRowKeys([list[0].id]);
- } else {
- setSelectedRowKeys([]);
- }
- }
- console.log('handleSuccess', isUpdate ? 'update' : 'create');
- emitDictChange();
- }
- // 表格请求之后,对返回值进行处理
- function handleAfterFetch(data) {
- // after fetch, select first row
- if (data.length > 0) {
- setSelectedRowKeys([data[0].dictId]);
- } else {
- setSelectedRowKeys([]);
- }
- console.log('handleAfterFetch', data);
- emitDictChange();
- }
- // 表格行点击事件
- function handleRowClick(record: Recordable) {
- console.log('handleRowClick', record);
- setSelectedRowKeys([record.dictId]);
- emitDictChange();
- }
- // 表格行双击事件
- function handleRowDbClick(record: Recordable) {
- console.log('handleRowDbClick', record);
- setSelectedRowKeys([record.dictId]);
- emitDictChange();
- }
- // 表格行选中事件
- function handleSelectionChange({ keys, rows }) {
- console.log('handleSelectionChange', keys, rows);
- emitDictChange();
- }
- // 字典变化事件
- function emitDictChange() {
- const selectedKeys = getSelectRowKeys();
- console.log(selectedKeys);
- emit('dict-change', selectedKeys.length > 0 ? selectedKeys[0] : '');
- }
- </script>
|