|
@@ -0,0 +1,361 @@
|
|
|
|
+<!--字典类型-->
|
|
|
|
+<script setup lang="ts">
|
|
|
|
+import SecondHeader from "@/views/modules/conmon/SecondHeader.vue";
|
|
|
|
+import DictItem from "./components/dict-item.vue";
|
|
|
|
+import {
|
|
|
|
+ getDictTypePage,
|
|
|
|
+ getDictTypeForm,
|
|
|
|
+ addDictType,
|
|
|
|
+ updateDictType,
|
|
|
|
+ deleteDictTypes,
|
|
|
|
+} from "@/api/system/dict";
|
|
|
|
+
|
|
|
|
+import {
|
|
|
|
+ DictTypePageVO,
|
|
|
|
+ DictTypeQuery,
|
|
|
|
+ DictTypeForm,
|
|
|
|
+} from "@/api/system/dict/types";
|
|
|
|
+import ButtonPermKeys from "@/common/configs/buttonPermission";
|
|
|
|
+
|
|
|
|
+defineOptions({
|
|
|
|
+ name: "DictType",
|
|
|
|
+ inheritAttrs: false,
|
|
|
|
+});
|
|
|
|
+
|
|
|
|
+const queryFormRef = ref(ElForm);
|
|
|
|
+const dataFormRef = ref(ElForm);
|
|
|
|
+
|
|
|
|
+const loading = ref(false);
|
|
|
|
+const ids = ref<number[]>([]);
|
|
|
|
+const total = ref(0);
|
|
|
|
+
|
|
|
|
+const queryParams = reactive<DictTypeQuery>({
|
|
|
|
+ pageNo: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+});
|
|
|
|
+
|
|
|
|
+const dictTypeList = ref<DictTypePageVO[]>();
|
|
|
|
+
|
|
|
|
+const dialog = reactive({
|
|
|
|
+ title: "",
|
|
|
|
+ visible: false,
|
|
|
|
+});
|
|
|
|
+
|
|
|
|
+const formData = reactive<DictTypeForm>({
|
|
|
|
+ state: 1,
|
|
|
|
+ type: "0",
|
|
|
|
+});
|
|
|
|
+
|
|
|
|
+const rules = reactive({
|
|
|
|
+ dictName: [
|
|
|
|
+ { required: true, message: "请输入字典类型名称", trigger: "blur" },
|
|
|
|
+ ],
|
|
|
|
+ dictType: [
|
|
|
|
+ { required: true, message: "请输入字典类型编码", trigger: "blur" },
|
|
|
|
+ ],
|
|
|
|
+});
|
|
|
|
+
|
|
|
|
+/** 查询 */
|
|
|
|
+function handleQuery() {
|
|
|
|
+ loading.value = true;
|
|
|
|
+ getDictTypePage(queryParams)
|
|
|
|
+ .then(({ data }) => {
|
|
|
|
+ dictTypeList.value = data.records;
|
|
|
|
+ total.value = data.totalCount;
|
|
|
|
+ })
|
|
|
|
+ .finally(() => {
|
|
|
|
+ loading.value = false;
|
|
|
|
+ });
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * 重置查询
|
|
|
|
+ */
|
|
|
|
+function resetQuery() {
|
|
|
|
+ queryFormRef.value.resetFields();
|
|
|
|
+ queryParams.pageNo = 1;
|
|
|
|
+ handleQuery();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/** 行复选框选中 */
|
|
|
|
+function handleSelectionChange(selection: any) {
|
|
|
|
+ ids.value = selection.map((item: any) => item.id);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * 打开字典类型表单弹窗
|
|
|
|
+ *
|
|
|
|
+ * @param dicTypeId 字典类型ID
|
|
|
|
+ */
|
|
|
|
+function openDialog(row?: any) {
|
|
|
|
+ dialog.visible = true;
|
|
|
|
+ console.log(row);
|
|
|
|
+ if (row) {
|
|
|
|
+ dialog.title = "修改字典类型";
|
|
|
|
+ Object.assign(formData, row);
|
|
|
|
+ } else {
|
|
|
|
+ formData.id = null;
|
|
|
|
+ formData.dictName = "";
|
|
|
|
+ formData.dictType = "";
|
|
|
|
+ formData.remark = "";
|
|
|
|
+ dialog.title = "新增字典类型";
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/** 字典类型表单提交 */
|
|
|
|
+function handleSubmit() {
|
|
|
|
+ dataFormRef.value.validate((isValid: boolean) => {
|
|
|
|
+ if (isValid) {
|
|
|
|
+ const dictTypeId = formData.id;
|
|
|
|
+ if (dictTypeId) {
|
|
|
|
+ updateDictType(formData)
|
|
|
|
+ .then(() => {
|
|
|
|
+ ElMessage.success("修改成功");
|
|
|
|
+ closeDialog();
|
|
|
|
+ handleQuery();
|
|
|
|
+ })
|
|
|
|
+ .finally(() => (loading.value = false));
|
|
|
|
+ } else {
|
|
|
|
+ addDictType(formData)
|
|
|
|
+ .then(() => {
|
|
|
|
+ ElMessage.success("新增成功");
|
|
|
|
+ closeDialog();
|
|
|
|
+ handleQuery();
|
|
|
|
+ })
|
|
|
|
+ .finally(() => (loading.value = false));
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/** 关闭字典类型弹窗 */
|
|
|
|
+function closeDialog() {
|
|
|
|
+ dialog.visible = false;
|
|
|
|
+ resetForm();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/** 重置字典类型表单 */
|
|
|
|
+function resetForm() {
|
|
|
|
+ dataFormRef.value.resetFields();
|
|
|
|
+ dataFormRef.value.clearValidate();
|
|
|
|
+
|
|
|
|
+ formData.id = undefined;
|
|
|
|
+ formData.state = 1;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/** 删除字典类型 */
|
|
|
|
+function handleDelete(dictTypeId?: number) {
|
|
|
|
+ const dictTypeIds = [dictTypeId || ids.value].join(",");
|
|
|
|
+ if (!dictTypeIds) {
|
|
|
|
+ ElMessage.warning("请勾选删除项");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ElMessageBox.confirm("确认删除已选中的数据项?", "警告", {
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
+ type: "warning",
|
|
|
|
+ }).then(() => {
|
|
|
|
+ deleteDictTypes(dictTypeIds).then(() => {
|
|
|
|
+ ElMessage.success("删除成功");
|
|
|
|
+ resetQuery();
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+const dictDataDialog = reactive({
|
|
|
|
+ title: "",
|
|
|
|
+ visible: false,
|
|
|
|
+});
|
|
|
|
+
|
|
|
|
+const selectedDictType = reactive({ typeCode: "", typeName: "" }); // 当前选中的字典类型
|
|
|
|
+
|
|
|
|
+/** 打开字典数据弹窗 */
|
|
|
|
+function openDictDialog(row: DictTypeForm) {
|
|
|
|
+ dictDataDialog.visible = true;
|
|
|
|
+ dictDataDialog.title = "【" + row.dictName + "】字典数据";
|
|
|
|
+
|
|
|
|
+ selectedDictType.typeCode = row.dictType + "";
|
|
|
|
+ selectedDictType.typeName = row.dictName + "";
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/** 关闭字典数据弹窗 */
|
|
|
|
+function closeDictDialog() {
|
|
|
|
+ dictDataDialog.visible = false;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+onMounted?.(() => {
|
|
|
|
+ handleQuery();
|
|
|
|
+});
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<template>
|
|
|
|
+ <div class="app-container">
|
|
|
|
+ <SecondHeader>仪器资源配置</SecondHeader>
|
|
|
|
+ <div class="search-container">
|
|
|
|
+ <el-form ref="queryFormRef" :model="queryParams" :inline="true">
|
|
|
|
+ <el-form-item label="关键字" prop="name">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.keywords"
|
|
|
|
+ placeholder="字典类型名称/编码"
|
|
|
|
+ clearable
|
|
|
|
+ style="width: 200px"
|
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-button type="primary" @click="handleQuery()"
|
|
|
|
+ ><i-ep-search />搜索</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-button @click="resetQuery()"><i-ep-refresh />重置</el-button>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <el-card shadow="never" class="table-container">
|
|
|
|
+ <template #header>
|
|
|
|
+ <el-button
|
|
|
|
+ v-hasPerm="[ButtonPermKeys.SYSTEM.BTNS.dictType_add]"
|
|
|
|
+ type="primary"
|
|
|
|
+ @click="openDialog()"
|
|
|
|
+ ><i-ep-plus />新增</el-button
|
|
|
|
+ >
|
|
|
|
+ <!-- <el-button
|
|
|
|
+ type="danger"
|
|
|
|
+ :disabled="ids.length === 0"
|
|
|
|
+ @click="handleDelete()"
|
|
|
|
+ ><i-ep-delete />删除</el-button
|
|
|
|
+ > -->
|
|
|
|
+ </template>
|
|
|
|
+ <el-table
|
|
|
|
+ v-loading="loading"
|
|
|
|
+ highlight-current-row
|
|
|
|
+ :data="dictTypeList"
|
|
|
|
+ border
|
|
|
|
+ @selection-change="handleSelectionChange"
|
|
|
|
+ >
|
|
|
|
+ <!-- <el-table-column type="selection" width="55" align="center" /> -->
|
|
|
|
+ <el-table-column label="字典类型名称" prop="dictName" />
|
|
|
|
+ <el-table-column label="字典类型编码" prop="dictType" />
|
|
|
|
+ <el-table-column label="状态" align="center" width="100">
|
|
|
|
+ <template #default="scope">
|
|
|
|
+ <el-tag v-if="scope.row.state === 1" type="success">启用</el-tag>
|
|
|
|
+ <el-tag v-else type="info">禁用</el-tag>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="备注" prop="remark" align="center" />
|
|
|
|
+ <el-table-column fixed="right" label="操作" align="center" width="220">
|
|
|
|
+ <template #default="scope">
|
|
|
|
+ <el-button
|
|
|
|
+ type="primary"
|
|
|
|
+ link
|
|
|
|
+ size="small"
|
|
|
|
+ @click.stop="openDictDialog(scope.row)"
|
|
|
|
+ ><i-ep-Collection />字典数据</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-button
|
|
|
|
+ v-hasPerm="[ButtonPermKeys.SYSTEM.BTNS.dictType_edit]"
|
|
|
|
+ type="primary"
|
|
|
|
+ link
|
|
|
|
+ size="small"
|
|
|
|
+ @click.stop="openDialog(scope.row)"
|
|
|
|
+ ><i-ep-edit />编辑</el-button
|
|
|
|
+ >
|
|
|
|
+ <!-- <el-button
|
|
|
|
+ v-hasPerm="[ButtonPermKeys.SYSTEM.BTNS.dictType_del]"
|
|
|
|
+ type="primary"
|
|
|
|
+ link
|
|
|
|
+ size="small"
|
|
|
|
+ @click.stop="handleDelete(scope.row.id)"
|
|
|
|
+ ><i-ep-delete />删除</el-button
|
|
|
|
+ >-->
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+
|
|
|
|
+ <pagination
|
|
|
|
+ v-if="total > 0"
|
|
|
|
+ v-model:total="total"
|
|
|
|
+ v-model:page="queryParams.pageNo"
|
|
|
|
+ v-model:limit="queryParams.pageSize"
|
|
|
|
+ @pagination="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-card>
|
|
|
|
+
|
|
|
|
+ <el-dialog
|
|
|
|
+ v-model="dialog.visible"
|
|
|
|
+ :title="dialog.title"
|
|
|
|
+ width="500px"
|
|
|
|
+ @close="closeDialog"
|
|
|
|
+ >
|
|
|
|
+ <el-form
|
|
|
|
+ ref="dataFormRef"
|
|
|
|
+ :model="formData"
|
|
|
|
+ :rules="rules"
|
|
|
|
+ label-width="80px"
|
|
|
|
+ >
|
|
|
|
+ <el-form-item label="字典名称" prop="dictName">
|
|
|
|
+ <el-input v-model="formData.dictName" placeholder="请输入字典名称" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="字典编码" prop="dictType">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="formData.dictType"
|
|
|
|
+ v-if="formData.id"
|
|
|
|
+ placeholder="请输入字典编码 sys_test user_test"
|
|
|
|
+ />
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="formData.dictType"
|
|
|
|
+ v-if="!formData.id"
|
|
|
|
+ placeholder="请输入字典编码 sys_test user_test"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="状态" prop="state">
|
|
|
|
+ <el-radio-group v-model="formData.state">
|
|
|
|
+ <el-radio :value="1">正常</el-radio>
|
|
|
|
+ <el-radio :value="0">停用</el-radio>
|
|
|
|
+ </el-radio-group>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <!-- <el-form-item label="字典类别" prop="type">
|
|
|
|
+ <el-radio-group v-model="formData.type">
|
|
|
|
+ <el-radio value="0">用户字典</el-radio>
|
|
|
|
+ <el-radio value="1">系统字典</el-radio>
|
|
|
|
+ </el-radio-group>
|
|
|
|
+ </el-form-item>-->
|
|
|
|
+ <el-form-item label="备注" prop="remark">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="formData.remark"
|
|
|
|
+ type="textarea"
|
|
|
|
+ placeholder="字典类型备注"
|
|
|
|
+ :autosize="{ minRows: 2, maxRows: 4 }"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+ <template #footer>
|
|
|
|
+ <div class="dialog-footer">
|
|
|
|
+ <el-button type="primary" @click="handleSubmit">确 定</el-button>
|
|
|
|
+ <el-button @click="closeDialog">取 消</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+ </el-dialog>
|
|
|
|
+
|
|
|
|
+ <!--字典数据弹窗-->
|
|
|
|
+ <el-dialog
|
|
|
|
+ v-model="dictDataDialog.visible"
|
|
|
|
+ :title="dictDataDialog.title"
|
|
|
|
+ width="1000px"
|
|
|
|
+ @close="closeDictDialog"
|
|
|
|
+ >
|
|
|
|
+ <dict-item
|
|
|
|
+ v-model:typeCode="selectedDictType.typeCode"
|
|
|
|
+ v-model:typeName="selectedDictType.typeName"
|
|
|
|
+ />
|
|
|
|
+ </el-dialog>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<style lang="scss" scoped>
|
|
|
|
+.app-container {
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 100vh;
|
|
|
|
+}
|
|
|
|
+</style>
|