From d7d388e53fd71f9a02c71302a007d443e54a27ef Mon Sep 17 00:00:00 2001
From: haoxuan <haoxuan>
Date: 星期二, 27 二月 2024 16:59:48 +0800
Subject: [PATCH] 销售机会报价单是否显示列表弹框的逻辑修改选择报价单赋对应的销售机会客户名称选择销售机会赋对应客户名称

---
 src/store/index.js |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/src/store/index.js b/src/store/index.js
index 1d8741c..68e35eb 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -4,7 +4,15 @@
 
 Vue.use(Vuex)
 export default new Vuex.Store({
+  state:{
+    menus:[]
+  },
+  mutations: {
+    setMenus(state, payload) {  
+      state.menus = payload;  
+    },
+  },
   modules: {
     getClientName
-  }
+  },
 })

--
Gitblit v1.8.0