From 624faa46fb237709a40db1567e3b708ec24c4222 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期四, 12 六月 2025 17:30:41 +0800
Subject: [PATCH] 1.巡检管理页面开发
---
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