From e0ed87e28da597222766f101beae1a152068d949 Mon Sep 17 00:00:00 2001 From: 张诺 <zhang_12370@163.com> Date: 星期一, 09 六月 2025 16:32:13 +0800 Subject: [PATCH] 测试基础管理模块、配置方案、配置字段完善 --- src/views/procureMent/index.vue | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/src/views/procureMent/index.vue b/src/views/procureMent/index.vue index 68d304d..5b96d12 100644 --- a/src/views/procureMent/index.vue +++ b/src/views/procureMent/index.vue @@ -44,6 +44,20 @@ import ProductionDialog from './components/ProductionDialog.vue'; import { purchaseRegistration } from "@/api/procureMent"; import useUserStore from '@/store/modules/user' +import useDictStore from "@/store/modules/dict"; +// 寮曞叆瀛楀吀鏁版嵁 +const useDictStores = useDictStore(); +useDictStores.setDict({ + id: 1, + name: "鐓ょ绫诲瀷", + type: "coalType", + items: [ + { label: "鏃犵儫鐓�", value: "anthracite" }, + { label: "鐑熺叅", value: "bituminous" }, + { label: "瑜愮叅", value: "lignite" } + ] +}) +console.log(useDictStores.dict); const { proxy } = getCurrentInstance() const dialogFormVisible = ref(false); -- Gitblit v1.9.3