diff --git a/src/api/system/dict/data/types.ts b/src/api/system/dict/data/types.ts
index a57b017..e4abb9b 100644
--- a/src/api/system/dict/data/types.ts
+++ b/src/api/system/dict/data/types.ts
@@ -1,7 +1,6 @@
export interface DictDataQuery extends PageQuery {
dictName: string;
dictType: string;
- status: string;
dictLabel: string;
}
@@ -12,7 +11,6 @@ export interface DictDataVO extends BaseEntity {
cssClass: string;
listClass: ElTagType;
dictSort: number;
- status: string;
remark: string;
}
@@ -24,6 +22,5 @@ export interface DictDataForm {
cssClass: string;
listClass: ElTagType;
dictSort: number;
- status: string;
remark: string;
}
diff --git a/src/api/system/dict/type/types.ts b/src/api/system/dict/type/types.ts
index 9e52ac6..4987dbf 100644
--- a/src/api/system/dict/type/types.ts
+++ b/src/api/system/dict/type/types.ts
@@ -2,7 +2,6 @@ export interface DictTypeVO extends BaseEntity {
dictId: number | string;
dictName: string;
dictType: string;
- status: string;
remark: string;
}
@@ -10,12 +9,10 @@ export interface DictTypeForm {
dictId: number | string | undefined;
dictName: string;
dictType: string;
- status: string;
remark: string;
}
export interface DictTypeQuery extends PageQuery {
dictName: string;
dictType: string;
- status: string;
}
diff --git a/src/views/system/dict/data.vue b/src/views/system/dict/data.vue
index 117754c..4ec9d6c 100644
--- a/src/views/system/dict/data.vue
+++ b/src/views/system/dict/data.vue
@@ -12,11 +12,6 @@
-
-
-
-
-
搜索
重置
@@ -61,11 +56,6 @@
-
-
-
-
-
@@ -114,11 +104,6 @@
>
-
-
- {{ dict.label }}
-
-
@@ -141,7 +126,6 @@ import { DictTypeVO } from '@/api/system/dict/type/types';
import { DictDataForm, DictDataQuery, DictDataVO } from "@/api/system/dict/data/types";
const { proxy } = getCurrentInstance() as ComponentInternalInstance
-const { sys_normal_disable } = toRefs(proxy?.useDict("sys_normal_disable"));
const route = useRoute();
const dataList = ref([]);
@@ -180,7 +164,6 @@ const initFormData: DictDataForm = {
cssClass: '',
listClass: "default",
dictSort: 0,
- status: "0",
remark: ''
}
const data = reactive>({
@@ -190,7 +173,6 @@ const data = reactive>({
pageSize: 10,
dictName: '',
dictType: '',
- status: '',
dictLabel: ''
},
rules: {
diff --git a/src/views/system/dict/index.vue b/src/views/system/dict/index.vue
index a182c9f..f3b0051 100644
--- a/src/views/system/dict/index.vue
+++ b/src/views/system/dict/index.vue
@@ -10,11 +10,6 @@
-
-
-
-
-
-
-
-
-
-
@@ -103,11 +93,6 @@
-
-
- {{ dict.label }}
-
-
@@ -128,7 +113,6 @@ import { listType, getType, delType, addType, updateType, refreshCache } from "@
import { DictTypeForm, DictTypeQuery, DictTypeVO } from "@/api/system/dict/type/types";
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
-const { sys_normal_disable } = toRefs(proxy?.useDict("sys_normal_disable"))
const typeList = ref([]);
const loading = ref(true);
@@ -152,7 +136,6 @@ const initFormData: DictTypeForm = {
dictId: undefined,
dictName: '',
dictType: '',
- status: "0",
remark: ''
}
const data = reactive>({
@@ -161,8 +144,7 @@ const data = reactive>({
pageNum: 1,
pageSize: 10,
dictName: '',
- dictType: '',
- status: ''
+ dictType: ''
},
rules: {
dictName: [{ required: true, message: "字典名称不能为空", trigger: "blur" }],