123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <template>
- <div class="table-box">
- <ProTable ref="proTable" :columns="columns" :request-api="listDictApi">
- <!-- 表格 header 按钮 -->
- <template #tableHeader="scope">
- <el-button type="primary" v-auth="['system:dict:add']" @click="openDialog(1, '字典类型新增')">新增</el-button>
- <el-button type="primary" v-auth="['system:dict:export']" icon="Download" plain @click="downloadFile">导出</el-button>
- <el-button
- type="danger"
- v-auth="['system:user:remove']"
- icon="Delete"
- plain
- :disabled="!scope.isSelected"
- @click="batchDelete(scope.selectedListIds)"
- >
- 批量删除
- </el-button>
- </template>
- <!-- 表格操作 -->
- <template #operation="scope">
- <el-button type="primary" link icon="EditPen" v-auth="['system:dict:edit']" @click="openDialog(2, '字典类型编辑', scope.row)">
- 编辑
- </el-button>
- <el-button type="primary" link icon="Delete" v-auth="['system:dict:remove']" @click="deleteDict(scope.row)"> 删除 </el-button>
- </template>
- </ProTable>
- <FormDialog ref="formDialogRef" :items-options="itemsOptions" :model="model" />
- <ImportExcel ref="dialogRef" />
- </div>
- </template>
- <script setup lang="tsx" name="Dict">
- import { useHandleData } from '@/hooks/useHandleData'
- import { useDownload } from '@/hooks/useDownload'
- import { ElMessageBox } from 'element-plus'
- import ImportExcel from '@/components/ImportExcel/index.vue'
- import FormDialog from '@/components/FormDialog/index.vue'
- import { ProTableInstance, ColumnProps } from '@/components/ProTable/interface'
- import { listDictApi, delDictApi, addDictApi, updateDictApi, exportApi, getDictApi } from '@/api/modules/system/dict'
- // ProTable 实例
- const proTable = ref<ProTableInstance>()
- // 表单model
- const model = ref({})
- // 删除用户信息
- const deleteDict = async (params: any) => {
- await useHandleData(delDictApi, params.dictId, `删除【${params.dictName}】字典类型`)
- proTable.value?.getTableList()
- }
- // 批量删除用户信息
- const batchDelete = async (ids: string[]) => {
- await useHandleData(delDictApi, ids, '删除所选字典类型信息')
- proTable.value?.clearSelection()
- proTable.value?.getTableList()
- }
- // 导出用户列表
- const downloadFile = async () => {
- ElMessageBox.confirm('确认导出字典类型数据?', '温馨提示', { type: 'warning' }).then(() =>
- useDownload(exportApi, '字典类型列表', proTable.value?.searchParam)
- )
- }
- const formDialogRef = ref<InstanceType<typeof FormDialog> | null>(null)
- // 打开弹框的功能
- const openDialog = async (type: number, title: string, row?: any) => {
- let res = { data: {} }
- if (row?.dictId) {
- res = await getDictApi(row?.dictId || null)
- }
- model.value = type == 1 ? { version: 0 } : { ...res.data, version: 0 }
- setItemsOptions()
- const params = {
- title,
- width: 500,
- isEdit: type !== 3,
- api: type == 1 ? addDictApi : updateDictApi,
- getTableList: proTable.value?.getTableList
- }
- formDialogRef.value?.openDialog(params)
- }
- const router = useRouter()
- // 跳转详情页
- const toDetail = (row: { dictId: any }) => {
- router.push(`/system/dict-data/index/${row.dictId}`)
- }
- // 表格配置项
- const columns = reactive<ColumnProps<any>[]>([
- { type: 'selection', fixed: 'left', width: 70 },
- { prop: 'dictId', label: '字典编号', width: 70 },
- {
- prop: 'dictName',
- label: '字典名称',
- search: {
- el: 'input'
- },
- width: 120
- },
- {
- prop: 'dictType',
- label: '字典类型',
- search: {
- el: 'input'
- },
- render: scope => {
- return (
- <el-button type="primary" link onClick={() => toDetail(scope.row)}>
- {scope.row.dictType}
- </el-button>
- )
- },
- width: 150
- },
- {
- prop: 'createTime',
- label: '创建时间'
- },
- {
- prop: 'remark',
- label: '备注',
- search: {
- el: 'input'
- }
- },
- { prop: 'operation', label: '操作', width: 230 }
- ])
- // 表单配置项
- let itemsOptions = ref<ProForm.ItemsOptions[]>([])
- const setItemsOptions = () => {
- itemsOptions.value = [
- {
- label: '字典名称',
- prop: 'dictName',
- rules: [{ required: true, message: '字典名称不能为空', trigger: 'blur' }],
- compOptions: {
- placeholder: '请输入字典名称'
- }
- },
- {
- label: '字典类型',
- prop: 'dictType',
- rules: [{ required: true, message: '字典类型不能为空', trigger: 'blur' }],
- compOptions: {
- placeholder: '请输入字典类型'
- }
- },
- {
- label: '备注',
- prop: 'remark',
- compOptions: {
- type: 'textarea',
- placeholder: '请输入备注'
- }
- }
- ]
- }
- </script>
|