From 9b531e24cbbc1021e48b7fbd8f132075e0ea8b8e Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Tue, 19 Sep 2023 16:10:47 +0800
Subject: [PATCH] 计划库筛选查询

---
 src/store/common.ts |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/src/store/common.ts b/src/store/common.ts
index a6c09b2..ea97352 100644
--- a/src/store/common.ts
+++ b/src/store/common.ts
@@ -1,13 +1,18 @@
 import { MutationTree } from 'vuex'
 
 const state = () => ({
-  projectId: null as string | null
+  projectId: null as string | null,
+  dockSns: null as string | null,
 })
 export type RootStateType = ReturnType<typeof state>
 const mutations: MutationTree<RootStateType> = {
   SET_PROJECT_ID (state, projectId: string) {
     state.projectId = projectId
   },
+
+  SET_DOCK_SN (state, dockSns: string) {
+    state.dockSns = dockSns
+  }
 }
 export default {
   state,

--
Gitblit v1.9.3