-  
-    
-      
-        {{ item.valueName }}
-         
-      
-    
-  
-
-
-
diff --git a/smart-admin-web-typescript/src/store/modules/system/dict.ts b/smart-admin-web-typescript/src/store/modules/system/dict.ts
deleted file mode 100644
index 2e41c04..0000000
--- a/smart-admin-web-typescript/src/store/modules/system/dict.ts
+++ /dev/null
@@ -1,53 +0,0 @@
-import { defineStore } from 'pinia';
-
-export const useDictStore = defineStore({
-  id: 'dict',
-  state: () => ({
-    dict: new Array(),
-  }),
-  actions: {
-    // 获取字典
-    getDict(keyCode: any) {
-      if (keyCode == null && keyCode == '') {
-        return null;
-      }
-      try {
-        for (let i = 0; i < this.dict.length; i++) {
-          if (this.dict[i].keyCode == keyCode) {
-            return this.dict[i].value;
-          }
-        }
-      } catch (e) {
-        return null;
-      }
-    },
-    // 设置字典
-    setDict(keyCode: any, value: any) {
-      if (keyCode !== null && keyCode !== '') {
-        this.dict.push({
-          key: keyCode,
-          value: value,
-        });
-      }
-    },
-    // 删除字典
-    removeDict(keyCode: any) {
-      let flag = false;
-      try {
-        for (let i = 0; i < this.dict.length; i++) {
-          if (this.dict[i].keyCode == keyCode) {
-            this.dict.splice(i, 1);
-            return true;
-          }
-        }
-      } catch (e) {
-        flag = false;
-      }
-      return false;
-    },
-    // 清空字典
-    cleanDict() {
-      this.dict = new Array();
-    },
-  },
-});
diff --git a/smart-admin-web-typescript/src/utils/dict.ts b/smart-admin-web-typescript/src/utils/dict.ts
deleted file mode 100644
index 122d26a..0000000
--- a/smart-admin-web-typescript/src/utils/dict.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-import { useDictStore } from '/@/store/modules/system/dict';
-import { dictApi } from '/@/api/support/dict-api';
-
-/**
- * 获取字典数据
- */
-
-export function useDict(...args: any) {
-  let res: any = {};
-  args.forEach(async (keyCode: any, index: any) => {
-    res[keyCode] = [];
-    const dicts = useDictStore().getDict(keyCode);
-    if (dicts) {
-      res[keyCode] = dicts;
-    } else {
-      let result = await dictApi.valueList(keyCode);
-      res[keyCode] = result.data;
-      useDictStore().setDict(keyCode, res[keyCode]);
-    }
-  });
-  return res;
-}
diff --git a/smart-admin-web-typescript/src/views/support/dict/components/dict-value-modal.vue b/smart-admin-web-typescript/src/views/support/dict/components/dict-value-modal.vue
deleted file mode 100644
index d248512..0000000
--- a/smart-admin-web-typescript/src/views/support/dict/components/dict-value-modal.vue
+++ /dev/null
@@ -1,221 +0,0 @@
-
-