From 35120acdc91fd8b86c5c85ccdcfeb63051095344 Mon Sep 17 00:00:00 2001
From: haoxuan <haoxuan>
Date: 星期四, 18 四月 2024 11:03:40 +0800
Subject: [PATCH] 添加入库 companId修改为字符串
---
src/store/index.js | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/src/store/index.js b/src/store/index.js
index ceffa8e..1b91708 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -4,11 +4,15 @@
Vue.use(Vuex)
export default new Vuex.Store({
- state: {
+ state: {
+ menus: null,
},
getters: {
},
mutations: {
+ setMenus(state, payload) {
+ state.menus = payload;
+ },
},
actions: {
},
--
Gitblit v1.8.0