You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

100 lines
2.6 KiB

2 years ago
<template>
<div>
<BasicTable @register="registerTable" :searchInfo="searchInfo">
2 years ago
<template #toolbar>
2 years ago
<a-button type="primary" @click="handleCreate"> {{ t('action.create') }}</a-button>
2 years ago
</template>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'action'">
<TableAction
:actions="[
{ icon: 'clarity:note-edit-line', label: t('action.edit'), onClick: handleEdit.bind(null, record) },
2 years ago
{
icon: 'ant-design:delete-outlined',
color: 'error',
2 years ago
label: t('action.delete'),
2 years ago
popConfirm: {
2 years ago
title: t('common.delMessage'),
2 years ago
placement: 'left',
confirm: handleDelete.bind(null, record)
}
}
]"
/>
</template>
</template>
</BasicTable>
<DictDataModal @register="registerModal" @success="reload()" />
2 years ago
</div>
</template>
<script lang="ts" setup name="DictData">
import { watch } from 'vue'
2 years ago
import { useI18n } from '@/hooks/web/useI18n'
import { useMessage } from '@/hooks/web/useMessage'
2 years ago
import { useModal } from '@/components/Modal'
import DictDataModal from './DictDataModal.vue'
2 years ago
import { BasicTable, useTable, TableAction } from '@/components/Table'
2 years ago
import { dataColumns, dataSearchFormSchema } from './dict.data'
import { deleteDictDataApi, getDictDataPageApi } from '@/api/system/dict/data'
2 years ago
const props = defineProps({
searchInfo: {
type: Object as PropType<Recordable>,
default: () => ({})
}
})
2 years ago
const { t } = useI18n()
const { createMessage } = useMessage()
2 years ago
const [registerModal, { openModal }] = useModal()
const [registerTable, { reload }] = useTable({
title: '字典数据列表',
api: getDictDataPageApi,
columns: dataColumns,
formConfig: {
labelWidth: 120,
schemas: dataSearchFormSchema,
autoSubmitOnEnter: true
},
useSearchForm: true,
showTableSetting: true,
showIndexColumn: false,
actionColumn: {
width: 140,
2 years ago
title: t('common.action'),
2 years ago
dataIndex: 'action',
fixed: 'right'
}
})
function handleCreate() {
openModal(true, {
record: props.searchInfo.dictType,
2 years ago
isUpdate: false
})
}
function handleEdit(record: Recordable) {
openModal(true, {
record,
isUpdate: true
})
}
2 years ago
async function handleDelete(record: Recordable) {
await deleteDictDataApi(record.id)
createMessage.success(t('common.delSuccessText'))
reload()
2 years ago
}
watch(
() => props.searchInfo,
(val) => {
console.info(val)
val && reload()
},
{ deep: true }
)
2 years ago
</script>