UNIVPLMDataIntegration/Web/src/views/system/dict/index.vue

413 lines
17 KiB
Vue
Raw Normal View History

2024-06-15 13:02:35 +08:00
<template>
2024-07-11 02:51:21 +08:00
<div class="sys-dict-container" v-loading="optionsDictType.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' }">
2024-07-11 02:51:21 +08:00
<el-form :model="state.queryParamsDictType" :show-message="false" :inlineMessage="true" label-width="auto" style="flex: 1 1 0%">
2024-07-01 13:29:57 +08:00
<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.queryParamsDictType.name" placeholder="字典名称" clearable @keyup.enter.native="handleQuery(true)" />
2024-07-01 13:29:57 +08:00
</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.queryParamsDictType.code" placeholder="字典编码" clearable @keyup.enter.native="handleQuery(true)" />
2024-07-01 13:29:57 +08:00
</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>
<el-button type="primary" icon="ele-Search" @click="handleQuery(true)" v-auth="'sysDictType/page'" :loading="optionsDictType.loading"> 查询 </el-button>
2024-07-11 02:51:21 +08:00
<el-button icon="ele-Refresh" @click="resetQuery" :loading="optionsDictType.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">
2024-07-11 02:51:21 +08:00
<vxe-grid ref="xGridDictType" class="xGrid-style" v-bind="optionsDictType" v-on="gridEventsDictType" @cell-click="handleDictData">
2024-07-01 13:29:57 +08:00
<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: 20px" icon="ele-Plus" @click="handleAdd" v-auth="'sysDictType/add'"> 新增 </el-button>
2024-07-01 13:29:57 +08:00
</template>
<template #toolbar_tools> </template>
<template #empty>
<el-empty :image-size="200" />
</template>
<template #row_sysFlag="{ row }">
<el-tag v-if="row.sysFlag === 1" type="success"></el-tag>
<el-tag v-else type="danger"></el-tag>
</template>
2024-07-01 13:29:57 +08:00
<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)" :disabled="row.sysFlag === 1"> </el-button>
2024-07-01 13:29:57 +08:00
</el-tooltip>
<el-tooltip content="删除" placement="top">
<el-button icon="ele-Delete" text type="danger" v-auth="'sysDictType/delete'" @click="handleDeleteDictType(row)" :disabled="row.sysFlag === 1"> </el-button>
2024-07-01 13:29:57 +08:00
</el-tooltip>
</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' }">
2024-07-11 02:51:21 +08:00
<el-form :model="state.queryParamsDictData" :show-message="false" :inlineMessage="true" label-width="auto" style="flex: 1 1 0%">
2024-07-01 13:29:57 +08:00
<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.queryParamsDictData.value" placeholder="字典值" clearable @keyup.enter.native="handleQueryDictData(true)" />
2024-07-01 13:29:57 +08:00
</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.queryParamsDictData.code" placeholder="编码" clearable @keyup.enter.native="handleQueryDictData(true)" />
2024-07-01 13:29:57 +08:00
</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-22 02:54:41 +08:00
<el-button type="primary" icon="ele-Search" @click="handleQueryDictData" v-auth="'sysDictType/page'" :loading="optionsDictData.loading"> 查询 </el-button>
2024-07-11 02:51:21 +08:00
<el-button icon="ele-Refresh" @click="resetQueryDictData" :loading="optionsDictData.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">
2024-07-11 02:51:21 +08:00
<vxe-grid ref="xGridDictData" class="xGrid-style" v-bind="optionsDictData" v-on="gridEventsDictData">
2024-07-01 13:29:57 +08:00
<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: 20px" icon="ele-Plus" @click="handleAddDictData" v-auth="'sysDictType/add'"> 新增 </el-button>
2024-07-01 13:29:57 +08:00
</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_name="{ row }">
{{ row.name == null ? row.value : row.name }}
</template>
2024-07-01 13:29:57 +08:00
<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">
2024-07-22 02:54:41 +08:00
<el-button icon="ele-Edit" text type="primary" v-auth="'sysDictType/update'" @click="handleEditDictData(row)"> </el-button>
2024-07-01 13:29:57 +08:00
</el-tooltip>
<el-tooltip content="删除" placement="top">
2024-07-22 02:54:41 +08:00
<el-button icon="ele-Delete" text type="danger" v-auth="'sysDictType/delete'" @click="handleDeleteDictData(row)"> </el-button>
2024-07-01 13:29:57 +08:00
</el-tooltip>
<el-tooltip content="复制">
<el-button icon="ele-CopyDocument" text type="primary" v-auth="'sysDictType/add'" @click="openCopyDictData(row)"> </el-button>
</el-tooltip>
2024-07-01 13:29:57 +08:00
</template>
</vxe-grid>
2024-06-15 13:02:35 +08:00
</el-card>
</el-col>
</el-row>
2024-07-11 02:51:21 +08:00
<EditDictType ref="editRefDictType" :title="state.title" @handleQuery="handleQuery" @handleUpdate="updateDictSession" />
<EditDcitData ref="editRefDictData" :title="state.title" @handleQuery="handleQueryDictData" @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-11 02:51:21 +08:00
import { VxeGridInstance, VxeGridListeners, VxeGridPropTypes } from 'vxe-table';
import { useVxeTable } from '/@/hooks/useVxeTableOptionsHook';
import { Local } from '/@/utils/storage';
2024-07-01 13:29:57 +08:00
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, PageDictTypeInput, SysDictData, PageDictDataInput, UpdateDictDataInput } from '/@/api-services/models';
2024-06-15 13:02:35 +08:00
2024-07-11 02:51:21 +08:00
const xGridDictType = ref<VxeGridInstance>();
const xGridDictData = ref<VxeGridInstance>();
const editRefDictType = ref<InstanceType<typeof EditDictType>>();
const editRefDictData = ref<InstanceType<typeof EditDcitData>>();
2024-06-15 13:02:35 +08:00
const state = reactive({
2024-07-11 02:51:21 +08:00
queryParamsDictType: {
2024-06-15 13:02:35 +08:00
name: undefined,
code: undefined,
},
2024-07-11 02:51:21 +08:00
queryParamsDictData: {
2024-07-01 13:29:57 +08:00
dictTypeId: undefined,
2024-06-15 13:02:35 +08:00
value: undefined,
code: undefined,
},
2024-07-11 02:51:21 +08:00
localPageParamDictType: {
pageSize: 50 as number,
defaultSort: { field: 'orderNo', order: 'asc', descStr: 'desc' },
2024-06-15 13:02:35 +08:00
},
2024-07-11 02:51:21 +08:00
localPageParamDictData: {
pageSize: 50 as number,
defaultSort: { field: 'orderNo', order: 'asc', descStr: 'desc' },
2024-07-01 13:29:57 +08:00
},
title: '',
2024-06-15 13:02:35 +08:00
});
2024-07-11 02:51:21 +08:00
// 本地存储参数
const localPageParamKey = 'localPageParam:sysDictType';
2024-07-01 13:29:57 +08:00
// 表格参数配置-字典类型
2024-07-11 02:51:21 +08:00
const optionsDictType = useVxeTable<SysDictType>(
2024-07-01 13:29:57 +08:00
{
2024-07-11 02:51:21 +08:00
id: 'sysDictType',
2024-07-01 13:29:57 +08:00
name: '字典信息',
columns: [
{ type: 'seq', title: '序号', width: 60, fixed: 'left' },
{ field: 'name', title: '字典名称', minWidth: 140, showOverflow: 'tooltip' },
{ field: 'code', title: '字典编码', minWidth: 140, showOverflow: 'tooltip' },
{ field: 'sysFlag', title: '是否内置', width: 80, showOverflow: 'tooltip', slots: { default: 'row_sysFlag' } },
2024-07-01 13:29:57 +08:00
{ 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' } },
],
},
2024-07-11 02:51:21 +08:00
// vxeGrid配置参数(此处可覆写任何参数)参考vxe-table官方文档
{
// 代理配置
proxyConfig: { autoLoad: true, ajax: { query: ({ page, sort }) => handleQueryApi(page, sort) } },
// 排序配置
sortConfig: { defaultSort: Local.get(localPageParamKey)?.defaultSort || state.localPageParamDictType.defaultSort },
// 分页配置
pagerConfig: { pageSize: Local.get(localPageParamKey)?.pageSize || state.localPageParamDictType.pageSize },
// 工具栏配置
toolbarConfig: { export: false },
// 行配置
rowConfig: { isCurrent: true, isHover: true },
// 多选配置
2024-07-11 02:51:21 +08:00
checkboxConfig: { range: true, highlight: false },
}
2024-07-01 13:29:57 +08:00
);
// 页面初始化
onMounted(() => {
2024-07-11 02:51:21 +08:00
state.localPageParamDictType = Local.get(localPageParamKey) || state.localPageParamDictType;
2024-06-15 13:02:35 +08:00
});
2024-07-11 02:51:21 +08:00
// 查询api
const handleQueryApi = async (page: VxeGridPropTypes.ProxyAjaxQueryPageParams, sort: VxeGridPropTypes.ProxyAjaxQuerySortCheckedParams) => {
const params = Object.assign(state.queryParamsDictType, { page: page.currentPage, pageSize: page.pageSize, field: sort.field, order: sort.order, descStr: 'desc' }) as PageDictTypeInput;
return getAPI(SysDictTypeApi).apiSysDictTypePagePost(params);
2024-06-15 13:02:35 +08:00
};
2024-07-11 02:51:21 +08:00
// 查询操作
const handleQuery = async (reset = false) => {
reset ? await xGridDictType.value?.commitProxy('reload') : await xGridDictType.value?.commitProxy('query');
2024-06-15 13:02:35 +08:00
};
2024-07-01 13:29:57 +08:00
// 重置操作
const resetQuery = async () => {
2024-07-11 02:51:21 +08:00
state.queryParamsDictType.code = undefined;
state.queryParamsDictType.name = undefined;
await xGridDictType.value?.commitProxy('reload');
2024-06-15 13:02:35 +08:00
};
2024-07-01 13:29:57 +08:00
// 打开新增页面
const handleAdd = () => {
state.title = '添加字典';
2024-07-11 02:51:21 +08:00
editRefDictType.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 = '编辑字典';
2024-07-11 02:51:21 +08:00
editRefDictType.value?.openDialog(row);
2024-06-15 13:02:35 +08:00
};
2024-07-11 02:51:21 +08:00
// 点击字典类型,加载其字典值数据
2024-07-01 13:29:57 +08:00
const handleDictData = async (scope: any) => {
2024-07-11 02:51:21 +08:00
state.queryParamsDictData.dictTypeId = scope.row.id;
await handleQueryDictData();
2024-06-15 13:02:35 +08:00
};
2024-07-11 02:51:21 +08:00
// 删除字典
const handleDeleteDictType = (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-11 02:51:21 +08:00
await handleQuery();
await updateDictSession();
xGridDictData.value?.loadData([]);
2024-06-15 13:02:35 +08:00
ElMessage.success('删除成功');
})
.catch(() => {});
};
2024-07-11 02:51:21 +08:00
// 表格事件
const gridEventsDictType: VxeGridListeners<SysDictType> = {
// 只对 pager-config 配置时有效,分页发生改变时会触发该事件
async pageChange({ pageSize }) {
state.localPageParamDictType.pageSize = pageSize;
// Local.set(localPageParamKey, state.localPageParam);
},
// 当排序条件发生变化时会触发该事件
async sortChange({ field, order }) {
state.localPageParamDictType.defaultSort = { field: field, order: order!, descStr: 'desc' };
// Local.set(localPageParamKey, state.localPageParam);
},
};
2024-07-01 13:29:57 +08:00
// 表格参数配置-字典值
2024-07-11 02:51:21 +08:00
const optionsDictData = useVxeTable<SysDictData>(
2024-07-01 13:29:57 +08:00
{
2024-07-11 02:51:21 +08:00
id: 'sysDictData',
2024-07-01 13:29:57 +08:00
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', slots: { default: 'row_name' } },
2024-07-01 13:29:57 +08:00
{ 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: 120, showOverflow: true, slots: { default: 'row_buttons' } },
2024-07-01 13:29:57 +08:00
],
},
2024-07-11 02:51:21 +08:00
// vxeGrid配置参数(此处可覆写任何参数)参考vxe-table官方文档
{
// 代理配置
proxyConfig: { autoLoad: true, ajax: { query: ({ page, sort }) => handleQueryDictDataApi(page, sort) } },
// // 排序配置
// sortConfig: { defaultSort: Local.get(localPageParamKey)?.defaultSort || state.localPageParam.defaultSort },
// // 分页配置
// pagerConfig: { pageSize: Local.get(localPageParamKey)?.pageSize || state.localPageParam.pageSize },
// 工具栏配置
toolbarConfig: { export: false },
// 等待
loading: false,
// 行配置
rowConfig: { isCurrent: true, isHover: true },
// 多选配置
checkboxConfig: { range: true, highlight: false },
}
2024-07-01 13:29:57 +08:00
);
2024-07-11 02:51:21 +08:00
// 查询api
const handleQueryDictDataApi = async (page: VxeGridPropTypes.ProxyAjaxQueryPageParams, sort: VxeGridPropTypes.ProxyAjaxQuerySortCheckedParams) => {
if (state.queryParamsDictData.dictTypeId == undefined) return;
2024-07-11 02:51:21 +08:00
const params = Object.assign(state.queryParamsDictData, { page: page.currentPage, pageSize: page.pageSize, field: sort.field, order: sort.order, descStr: 'desc' }) as PageDictDataInput;
return getAPI(SysDictDataApi).apiSysDictDataPagePost(params);
2024-07-01 13:29:57 +08:00
};
2024-07-11 02:51:21 +08:00
// 查询操作
const handleQueryDictData = async (reset = false) => {
reset ? await xGridDictData.value?.commitProxy('reload') : await xGridDictData.value?.commitProxy('query');
2024-07-01 13:29:57 +08:00
};
// 重置操作
2024-07-11 02:51:21 +08:00
const resetQueryDictData = async () => {
state.queryParamsDictData.value = undefined;
state.queryParamsDictData.code = undefined;
await xGridDictData.value?.commitProxy('reload');
2024-07-01 13:29:57 +08:00
};
2024-07-11 02:51:21 +08:00
// 添加字典值
const handleAddDictData = () => {
if (!state.queryParamsDictData.dictTypeId) {
2024-07-01 13:29:57 +08:00
ElMessage.warning('请选择字典');
return;
}
state.title = '添加字典值';
2024-07-11 02:51:21 +08:00
editRefDictData.value?.openDialog({ status: 1, orderNo: 100, dictTypeId: state.queryParamsDictData.dictTypeId });
2024-07-01 13:29:57 +08:00
};
// 打开编辑页面
2024-07-11 02:51:21 +08:00
const handleEditDictData = (row: any) => {
2024-07-01 13:29:57 +08:00
state.title = '编辑字典值';
2024-07-11 02:51:21 +08:00
editRefDictData.value?.openDialog(row);
2024-07-01 13:29:57 +08:00
};
// 打开复制字典值页面
const openCopyDictData = (row: any) => {
state.title = '复制字典值';
var copyRow = JSON.parse(JSON.stringify(row)) as UpdateDictDataInput;
copyRow.id = 0;
editRefDictData.value?.openDialog(copyRow);
};
2024-07-11 02:51:21 +08:00
// 删除字典值
const handleDeleteDictData = (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-11 02:51:21 +08:00
await handleQueryDictData();
await updateDictSession();
2024-06-15 13:02:35 +08:00
ElMessage.success('删除成功');
})
.catch(() => {});
};
2024-07-11 02:51:21 +08:00
// 表格事件
const gridEventsDictData: VxeGridListeners<SysDictData> = {
// 只对 pager-config 配置时有效,分页发生改变时会触发该事件
async pageChange({ pageSize }) {
state.localPageParamDictData.pageSize = pageSize;
// Local.set(localPageParamKey, state.localPageParam);
},
// 当排序条件发生变化时会触发该事件
async sortChange({ field, order }) {
state.localPageParamDictData.defaultSort = { field: field, order: order!, descStr: 'desc' };
// Local.set(localPageParamKey, state.localPageParam);
},
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>