spring
2025-08-29 e8db9d37e2ef39e75bb49288e9e2c091df6b01d2
src/views/system/dict/index.vue
@@ -174,6 +174,7 @@
<script setup name="Dict">
import useDictStore from '@/store/modules/dict'
import { listType, getType, delType, addType, updateType, refreshCache } from "@/api/system/dict/type"
import {onMounted} from "vue";
const { proxy } = getCurrentInstance()
const { sys_normal_disable } = proxy.useDict("sys_normal_disable")
@@ -319,5 +320,7 @@
  })
}
getList()
onMounted(() => {
   getList();
});
</script>