2024-06-15 13:02:35 +08:00
|
|
|
<template>
|
2024-07-01 13:29:57 +08:00
|
|
|
<div class="sys-dict-container" v-loading="options.loading">
|
2024-06-15 13:02:35 +08:00
|
|
|
<el-row :gutter="8" style="width: 100%; height: 100%; flex: 1">
|
2024-07-01 13:29:57 +08:00
|
|
|
<el-col :span="12" :xs="24" class="full-height">
|
|
|
|
|
<el-card shadow="hover" :body-style="{ padding: '5px 5px 0 5px', display: 'flex', width: '100%', height: '100%', alignItems: 'start' }">
|
|
|
|
|
<el-form :model="state.queryParams" :show-message="false" :inlineMessage="true" :label-width="'60px'" style="flex: 1 1 0%">
|
|
|
|
|
<el-row :gutter="10">
|
|
|
|
|
<el-col class="mb5" :xs="24" :sm="24" :md="24" :lg="12" :xl="12">
|
|
|
|
|
<el-form-item label="字典名称" prop="name">
|
|
|
|
|
<el-input v-model="state.queryParams.name" placeholder="字典名称" clearable @keyup.enter.native="handleQuery(true)" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col class="mb5" :xs="24" :sm="24" :md="24" :lg="12" :xl="12">
|
|
|
|
|
<el-form-item label="字典编码" prop="code">
|
|
|
|
|
<el-input v-model="state.queryParams.code" placeholder="字典编码" clearable @keyup.enter.native="handleQuery(true)" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<el-divider style="height: calc(100% - 5px); margin: 0 10px" direction="vertical" />
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col>
|
2024-06-15 13:02:35 +08:00
|
|
|
<el-button-group>
|
2024-07-01 13:29:57 +08:00
|
|
|
<el-button type="primary" icon="ele-Search" @click="handleQuery(true)" v-auth="'sysDictType:page'" :loading="options.loading"> 查询 </el-button>
|
|
|
|
|
<el-button icon="ele-Refresh" @click="resetQuery" :loading="options.loading"> 重置 </el-button>
|
2024-06-15 13:02:35 +08:00
|
|
|
</el-button-group>
|
2024-07-01 13:29:57 +08:00
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-card>
|
2024-06-15 13:02:35 +08:00
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
<el-card class="full-table" shadow="hover" style="margin-top: 5px">
|
|
|
|
|
<vxe-grid ref="xGrid" class="xGrid-style" v-bind="options" @sort-change="sortChange" @cell-click="handleDictData">
|
|
|
|
|
<template #toolbar_buttons>
|
|
|
|
|
<el-icon size="16" style="margin-right: 3px; margin-top: 2px; display: inline; vertical-align: middle"><ele-Collection /></el-icon>字典
|
|
|
|
|
<el-button type="primary" style="margin-left: 10px" icon="ele-Plus" @click="handleAdd" v-auth="'sysDictType:add'"> 新增 </el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<template #toolbar_tools> </template>
|
|
|
|
|
<template #empty>
|
|
|
|
|
<el-empty :image-size="200" />
|
|
|
|
|
</template>
|
|
|
|
|
<template #row_status="{ row }">
|
|
|
|
|
<el-tag v-if="row.status === 1" type="success">启用</el-tag>
|
|
|
|
|
<el-tag v-else type="danger">禁用</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
<template #row_record="{ row }">
|
|
|
|
|
<ModifyRecord :data="row" />
|
|
|
|
|
</template>
|
|
|
|
|
<template #row_buttons="{ row }">
|
|
|
|
|
<el-tooltip content="编辑" placement="top">
|
|
|
|
|
<el-button icon="ele-Edit" text type="primary" v-auth="'sysDictType:update'" @click="handleEdit(row)"> </el-button>
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
<el-tooltip content="删除" placement="top">
|
|
|
|
|
<el-button icon="ele-Delete" text type="danger" v-auth="'sysDictType:delete'" @click="handleDelete(row)"> </el-button>
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
</template>
|
|
|
|
|
<template #pager>
|
|
|
|
|
<vxe-pager
|
|
|
|
|
:loading="options.loading"
|
|
|
|
|
v-model:current-page="state.tableParams.page"
|
|
|
|
|
v-model:page-size="state.tableParams.pageSize"
|
|
|
|
|
:total="state.tableParams.total"
|
|
|
|
|
@page-change="pageChange"
|
|
|
|
|
/>
|
|
|
|
|
</template>
|
|
|
|
|
</vxe-grid>
|
2024-06-15 13:02:35 +08:00
|
|
|
</el-card>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
<el-col :span="12" :xs="24" class="full-height">
|
|
|
|
|
<el-card shadow="hover" :body-style="{ padding: '5px 5px 0 5px', display: 'flex', width: '100%', height: '100%', alignItems: 'start' }">
|
|
|
|
|
<el-form :model="state.queryDictParams" :show-message="false" :inlineMessage="true" :label-width="'60px'" style="flex: 1 1 0%">
|
|
|
|
|
<el-row :gutter="10">
|
|
|
|
|
<el-col class="mb5" :xs="24" :sm="24" :md="24" :lg="12" :xl="12">
|
|
|
|
|
<el-form-item label="字典值" prop="value">
|
|
|
|
|
<el-input v-model="state.queryDictParams.value" placeholder="字典值" clearable @keyup.enter.native="handleDictQuery(true)" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col class="mb5" :xs="24" :sm="24" :md="24" :lg="12" :xl="12">
|
|
|
|
|
<el-form-item label="编码" prop="code">
|
|
|
|
|
<el-input v-model="state.queryDictParams.code" placeholder="编码" clearable @keyup.enter.native="handleDictQuery(true)" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<el-divider style="height: calc(100% - 5px); margin: 0 10px" direction="vertical" />
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col>
|
2024-06-15 13:02:35 +08:00
|
|
|
<el-button-group>
|
2024-07-01 13:29:57 +08:00
|
|
|
<el-button type="primary" icon="ele-Search" @click="handleDictQuery(true)" v-auth="'sysDictType:page'" :loading="options.loading"> 查询 </el-button>
|
|
|
|
|
<el-button icon="ele-Refresh" @click="resetDictQuery" :loading="options.loading"> 重置 </el-button>
|
2024-06-15 13:02:35 +08:00
|
|
|
</el-button-group>
|
2024-07-01 13:29:57 +08:00
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-card>
|
2024-06-15 13:02:35 +08:00
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
<el-card class="full-table" shadow="hover" style="margin-top: 5px">
|
|
|
|
|
<vxe-grid ref="xDictGrid" class="xGrid-style" v-bind="dictOptions" @sort-change="dictSortChange">
|
|
|
|
|
<template #toolbar_buttons>
|
|
|
|
|
<el-icon size="16" style="margin-right: 3px; margin-top: 2px; display: inline; vertical-align: middle"><ele-Collection /></el-icon>字典值
|
|
|
|
|
<el-button type="primary" style="margin-left: 10px" icon="ele-Plus" @click="handleDictAdd" v-auth="'sysDictType:add'"> 新增 </el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<template #toolbar_tools> </template>
|
|
|
|
|
<template #empty>
|
|
|
|
|
<el-empty :image-size="200" />
|
|
|
|
|
</template>
|
|
|
|
|
<template #row_value="{ row }">
|
|
|
|
|
<el-tag :type="row.tagType" :style="row.styleSetting" :class="row.classSetting">{{ row.value }}</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
<template #row_extData="{ row }">
|
|
|
|
|
<el-tag type="warning" v-if="row.extData == null || row.extData == ''">空</el-tag>
|
|
|
|
|
<el-tag type="success" v-else>有值</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
<template #row_status="{ row }">
|
|
|
|
|
<el-tag v-if="row.status === 1" type="success">启用</el-tag>
|
|
|
|
|
<el-tag v-else type="danger">禁用</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
<template #row_record="{ row }">
|
|
|
|
|
<ModifyRecord :data="row" />
|
|
|
|
|
</template>
|
|
|
|
|
<template #row_buttons="{ row }">
|
|
|
|
|
<el-tooltip content="编辑" placement="top">
|
|
|
|
|
<el-button icon="ele-Edit" text type="primary" v-auth="'sysDictType:update'" @click="handleDictEdit(row)"> </el-button>
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
<el-tooltip content="删除" placement="top">
|
|
|
|
|
<el-button icon="ele-Delete" text type="danger" v-auth="'sysDictType:delete'" @click="handleDictDelete(row)"> </el-button>
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
</template>
|
|
|
|
|
<template #pager>
|
|
|
|
|
<vxe-pager
|
|
|
|
|
:loading="dictOptions.loading"
|
|
|
|
|
v-model:current-page="state.tableDictParams.page"
|
|
|
|
|
v-model:page-size="state.tableDictParams.pageSize"
|
|
|
|
|
:total="state.tableDictParams.total"
|
|
|
|
|
@page-change="dictPageChange"
|
|
|
|
|
/>
|
|
|
|
|
</template>
|
|
|
|
|
</vxe-grid>
|
2024-06-15 13:02:35 +08:00
|
|
|
</el-card>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
<EditDictType ref="editRef" :title="state.title" @handleQuery="handleQuery(false)" @handleUpdate="updateDictSession" />
|
|
|
|
|
<EditDcitData ref="editDictRef" :title="state.title" @handleQuery="handleDictQuery(false)" @handleUpdate="updateDictSession" />
|
2024-06-15 13:02:35 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup name="sysDict">
|
|
|
|
|
import { onMounted, reactive, ref } from 'vue';
|
|
|
|
|
import { ElMessageBox, ElMessage } from 'element-plus';
|
2024-07-01 13:29:57 +08:00
|
|
|
import { auth } from '/@/utils/authFunction';
|
|
|
|
|
import { VxeGridInstance, VxePagerEvents, VxePagerDefines } from 'vxe-table';
|
|
|
|
|
import { useVxeTable } from '/@/hooks/vxeTableOptionsHook';
|
|
|
|
|
import { useUserInfo } from '/@/stores/userInfo';
|
|
|
|
|
|
2024-06-15 13:02:35 +08:00
|
|
|
import EditDictType from '/@/views/system/dict/component/editDictType.vue';
|
2024-07-01 13:29:57 +08:00
|
|
|
import EditDcitData from '/@/views/system/dict/component/editDictData.vue';
|
2024-06-15 13:02:35 +08:00
|
|
|
import ModifyRecord from '/@/components/table/modifyRecord.vue';
|
|
|
|
|
|
|
|
|
|
import { getAPI } from '/@/utils/axios-utils';
|
|
|
|
|
import { SysDictTypeApi, SysDictDataApi } from '/@/api-services/api';
|
|
|
|
|
import { SysDictType, SysDictData } from '/@/api-services/models';
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
const xGrid = ref<VxeGridInstance>();
|
|
|
|
|
const xDictGrid = ref<VxeGridInstance>();
|
|
|
|
|
const editRef = ref<InstanceType<typeof EditDictType>>();
|
|
|
|
|
const editDictRef = ref<InstanceType<typeof EditDcitData>>();
|
2024-06-15 13:02:35 +08:00
|
|
|
const state = reactive({
|
2024-07-01 13:29:57 +08:00
|
|
|
queryParams: {
|
2024-06-15 13:02:35 +08:00
|
|
|
name: undefined,
|
|
|
|
|
code: undefined,
|
|
|
|
|
},
|
2024-07-01 13:29:57 +08:00
|
|
|
queryDictParams: {
|
|
|
|
|
dictTypeId: undefined,
|
2024-06-15 13:02:35 +08:00
|
|
|
value: undefined,
|
|
|
|
|
code: undefined,
|
|
|
|
|
},
|
2024-07-01 13:29:57 +08:00
|
|
|
tableParams: {
|
2024-06-15 13:02:35 +08:00
|
|
|
page: 1,
|
2024-07-01 13:29:57 +08:00
|
|
|
pageSize: 50,
|
|
|
|
|
field: 'orderNo', // 默认的排序字段
|
|
|
|
|
order: 'aes', // 排序方向
|
|
|
|
|
descStr: 'desc', // 降序排序的关键字符
|
2024-06-15 13:02:35 +08:00
|
|
|
total: 0 as any,
|
|
|
|
|
},
|
2024-07-01 13:29:57 +08:00
|
|
|
tableDictParams: {
|
|
|
|
|
page: 1,
|
|
|
|
|
pageSize: 50,
|
|
|
|
|
field: 'orderNo', // 默认的排序字段
|
|
|
|
|
order: 'aes', // 排序方向
|
|
|
|
|
descStr: 'desc', // 降序排序的关键字符
|
|
|
|
|
total: 0 as any,
|
|
|
|
|
},
|
|
|
|
|
title: '',
|
2024-06-15 13:02:35 +08:00
|
|
|
});
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
// 表格参数配置-字典类型
|
|
|
|
|
const options = useVxeTable<SysDictType>(
|
|
|
|
|
{
|
|
|
|
|
id: 'sysDict',
|
|
|
|
|
name: '字典信息',
|
|
|
|
|
columns: [
|
|
|
|
|
{ type: 'seq', title: '序号', width: 60, fixed: 'left' },
|
|
|
|
|
{ field: 'name', title: '字典名称', minWidth: 140, showOverflow: 'tooltip' },
|
|
|
|
|
{ field: 'code', title: '字典编码', minWidth: 140, showOverflow: 'tooltip' },
|
|
|
|
|
{ field: 'orderNo', title: '排序', width: 80, showOverflow: 'tooltip' },
|
|
|
|
|
{ field: 'status', title: '状态', width: 80, showOverflow: 'tooltip', slots: { default: 'row_status' } },
|
|
|
|
|
{ field: '', title: '修改记录', width: 100, showOverflow: 'tooltip', slots: { default: 'row_record' } },
|
|
|
|
|
{ title: '操作', fixed: 'right', width: 100, showOverflow: true, slots: { default: 'row_buttons' } },
|
|
|
|
|
],
|
|
|
|
|
enableExport: auth('sysDictType:export'),
|
|
|
|
|
searchCallback: () => handleQuery(),
|
|
|
|
|
queryAllCallback: () => fetchData({ pageSize: 99999 }),
|
|
|
|
|
},
|
|
|
|
|
{ rowConfig: { isCurrent: true, isHover: true }, checkboxConfig: { range: true, highlight: false } }
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// 页面初始化
|
2024-06-15 13:02:35 +08:00
|
|
|
onMounted(async () => {
|
2024-07-01 13:29:57 +08:00
|
|
|
await handleQuery();
|
2024-06-15 13:02:35 +08:00
|
|
|
});
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
// 查询操作
|
|
|
|
|
const handleQuery = async (reset = false) => {
|
|
|
|
|
options.loading = true;
|
|
|
|
|
if (reset) state.tableParams.page = 1;
|
|
|
|
|
var res = await fetchData(null);
|
|
|
|
|
await xGrid.value?.loadData(res.data.result?.items ?? []);
|
|
|
|
|
state.tableParams.total = res.data.result?.total;
|
|
|
|
|
options.loading = false;
|
2024-06-15 13:02:35 +08:00
|
|
|
};
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
// 获取数据
|
|
|
|
|
const fetchData = async (tableParams: any) => {
|
|
|
|
|
let params = Object.assign(state.queryParams, state.tableParams, tableParams);
|
|
|
|
|
return getAPI(SysDictTypeApi).apiSysDictTypePagePost(params);
|
2024-06-15 13:02:35 +08:00
|
|
|
};
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
// 重置操作
|
|
|
|
|
const resetQuery = async () => {
|
|
|
|
|
state.queryParams.code = undefined;
|
|
|
|
|
state.queryParams.name = undefined;
|
|
|
|
|
await handleQuery(true);
|
2024-06-15 13:02:35 +08:00
|
|
|
};
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
// 改变页码序号或页面容量
|
|
|
|
|
const pageChange: VxePagerEvents.PageChange = async ({ currentPage, pageSize }: VxePagerDefines.PageChangeEventParams) => {
|
|
|
|
|
state.tableParams.page = currentPage;
|
|
|
|
|
state.tableParams.pageSize = pageSize;
|
|
|
|
|
await handleQuery();
|
2024-06-15 13:02:35 +08:00
|
|
|
};
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
// 列排序
|
|
|
|
|
const sortChange = async (options: any) => {
|
|
|
|
|
state.tableParams.field = options.field;
|
|
|
|
|
state.tableParams.order = options.order;
|
|
|
|
|
await handleQuery();
|
2024-06-15 13:02:35 +08:00
|
|
|
};
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
// 打开新增页面
|
|
|
|
|
const handleAdd = () => {
|
|
|
|
|
state.title = '添加字典';
|
|
|
|
|
editRef.value?.openDialog({ status: 1, orderNo: 100 });
|
2024-06-15 13:02:35 +08:00
|
|
|
};
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
// 打开编辑页面
|
|
|
|
|
const handleEdit = (row: any) => {
|
|
|
|
|
state.title = '编辑字典';
|
|
|
|
|
editRef.value?.openDialog(row);
|
2024-06-15 13:02:35 +08:00
|
|
|
};
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
// 点击表格,加载字典值表格数据
|
|
|
|
|
const handleDictData = async (scope: any) => {
|
|
|
|
|
state.queryDictParams.dictTypeId = scope.row.id;
|
|
|
|
|
await handleDictQuery(true);
|
2024-06-15 13:02:35 +08:00
|
|
|
};
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
// 删除
|
|
|
|
|
const handleDelete = (row: any) => {
|
2024-06-15 13:02:35 +08:00
|
|
|
ElMessageBox.confirm(`确定删除字典:【${row.name}】?`, '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
})
|
|
|
|
|
.then(async () => {
|
|
|
|
|
await getAPI(SysDictTypeApi).apiSysDictTypeDeletePost({ id: row.id });
|
2024-07-01 13:29:57 +08:00
|
|
|
handleQuery();
|
2024-06-15 13:02:35 +08:00
|
|
|
updateDictSession();
|
2024-07-01 13:29:57 +08:00
|
|
|
xDictGrid.value?.loadData([]);
|
|
|
|
|
state.tableDictParams.total = 0;
|
2024-06-15 13:02:35 +08:00
|
|
|
ElMessage.success('删除成功');
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
};
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
// 表格参数配置-字典值
|
|
|
|
|
const dictOptions = useVxeTable<SysDictData>(
|
|
|
|
|
{
|
|
|
|
|
id: 'dictInfo',
|
|
|
|
|
name: '字典值信息',
|
|
|
|
|
columns: [
|
|
|
|
|
{ type: 'seq', title: '序号', width: 60, fixed: 'left' },
|
|
|
|
|
{ field: 'value', title: '字典值', minWidth: 90, showOverflow: 'tooltip', slots: { default: 'row_value' } },
|
|
|
|
|
{ field: 'code', title: '编码', minWidth: 120, showOverflow: 'tooltip' },
|
|
|
|
|
{ field: 'name', title: '名称', minWidth: 120, showOverflow: 'tooltip' },
|
|
|
|
|
{ field: 'extData', title: '拓展数据', showOverflow: 'tooltip', slots: { default: 'row_extData' } },
|
|
|
|
|
{ field: 'orderNo', title: '排序', width: 80, showOverflow: 'tooltip' },
|
|
|
|
|
{ field: 'status', title: '状态', width: 80, showOverflow: 'tooltip', slots: { default: 'row_status' } },
|
|
|
|
|
{ field: '', title: '修改记录', width: 100, showOverflow: 'tooltip', slots: { default: 'row_record' } },
|
|
|
|
|
{ title: '操作', fixed: 'right', width: 100, showOverflow: true, slots: { default: 'row_buttons' } },
|
|
|
|
|
],
|
|
|
|
|
enableExport: auth('sysDictType:export'),
|
|
|
|
|
searchCallback: () => handleDictQuery(),
|
|
|
|
|
queryAllCallback: () => fetchDictData({ pageSize: 99999 }),
|
|
|
|
|
},
|
|
|
|
|
{ loading: false, rowConfig: { isCurrent: true, isHover: true }, checkboxConfig: { range: true, highlight: false } }
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// 查询操作
|
|
|
|
|
const handleDictQuery = async (reset = false) => {
|
|
|
|
|
dictOptions.loading = true;
|
|
|
|
|
if (reset) state.tableDictParams.page = 1;
|
|
|
|
|
var res = await fetchDictData(null);
|
|
|
|
|
xDictGrid.value?.loadData(res.data.result?.items ?? []);
|
|
|
|
|
state.tableDictParams.total = res.data.result?.total;
|
|
|
|
|
dictOptions.loading = false;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 获取数据
|
|
|
|
|
const fetchDictData = async (tableParams: any) => {
|
|
|
|
|
let params = Object.assign(state.queryDictParams, state.tableDictParams, tableParams);
|
|
|
|
|
return getAPI(SysDictDataApi).apiSysDictDataPagePost(params);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 重置操作
|
|
|
|
|
const resetDictQuery = async () => {
|
|
|
|
|
state.queryDictParams.value = undefined;
|
|
|
|
|
state.queryDictParams.code = undefined;
|
|
|
|
|
await handleDictQuery(true);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleDictAdd = () => {
|
|
|
|
|
if (!state.queryDictParams.dictTypeId) {
|
|
|
|
|
ElMessage.warning('请选择字典');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
state.title = '添加字典值';
|
|
|
|
|
editDictRef.value?.openDialog({ status: 1, orderNo: 100, dictTypeId: state.queryDictParams.dictTypeId });
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 打开编辑页面
|
|
|
|
|
const handleDictEdit = (row: any) => {
|
|
|
|
|
state.title = '编辑字典值';
|
|
|
|
|
editDictRef.value?.openDialog(row);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 删除
|
|
|
|
|
const handleDictDelete = (row: any) => {
|
2024-06-15 13:02:35 +08:00
|
|
|
ElMessageBox.confirm(`确定删除字典值:【${row.value}】?`, '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
})
|
|
|
|
|
.then(async () => {
|
|
|
|
|
await getAPI(SysDictDataApi).apiSysDictDataDeletePost({ id: row.id });
|
2024-07-01 13:29:57 +08:00
|
|
|
handleDictQuery();
|
2024-06-15 13:02:35 +08:00
|
|
|
updateDictSession();
|
|
|
|
|
ElMessage.success('删除成功');
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
};
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
// 改变字典值页码序号或页面容量
|
|
|
|
|
const dictPageChange: VxePagerEvents.PageChange = async ({ currentPage, pageSize }: VxePagerDefines.PageChangeEventParams) => {
|
|
|
|
|
state.tableDictParams.page = currentPage;
|
|
|
|
|
state.tableDictParams.pageSize = pageSize;
|
|
|
|
|
await handleDictQuery();
|
2024-06-15 13:02:35 +08:00
|
|
|
};
|
|
|
|
|
|
2024-07-01 13:29:57 +08:00
|
|
|
// 字典值列排序
|
|
|
|
|
const dictSortChange = async (options: any) => {
|
|
|
|
|
state.tableDictParams.field = options.field;
|
|
|
|
|
state.tableDictParams.order = options.order;
|
|
|
|
|
await handleDictQuery();
|
2024-06-15 13:02:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 更新前端字典缓存
|
|
|
|
|
const updateDictSession = async () => {
|
|
|
|
|
// if (Session.get('dictList')) {
|
|
|
|
|
// const dictList = await useUserInfo().getAllDictList();
|
|
|
|
|
// Session.set('dictList', dictList);
|
|
|
|
|
// }
|
|
|
|
|
await useUserInfo().setDictList();
|
|
|
|
|
};
|
|
|
|
|
</script>
|
2024-07-01 13:29:57 +08:00
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.full-height {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
</style>
|