From 349bcef9a96391d22522a3409adf5a89e7e70a95 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期二, 24 十月 2023 08:46:11 +0800
Subject: [PATCH] Merge branch 'dev' of http://139.186.142.91:10010/r/productDev/dmMes into dev
---
 screen_standard/src/stores/counter.js |   45 +++++++++++++++++++++++++++++++++++++--------
 1 files changed, 37 insertions(+), 8 deletions(-)
diff --git a/screen_standard/src/stores/counter.js b/screen_standard/src/stores/counter.js
index b6757ba..446b738 100644
--- a/screen_standard/src/stores/counter.js
+++ b/screen_standard/src/stores/counter.js
@@ -1,12 +1,41 @@
-import { ref, computed } from 'vue'
-import { defineStore } from 'pinia'
+import { defineStore } from 'pinia';
 
-export const useCounterStore = defineStore('counter', () => {
-  const count = ref(0)
-  const doubleCount = computed(() => count.value * 2)
-  function increment() {
-    count.value++
+export const useCounterStore = defineStore('enterprise', {
+
+  state: () => {
+    return {
+      companyId: window.sessionStorage.getItem('companyId'),
+      departId: window.sessionStorage.getItem('departId'),
+      delayNum: 0, // 寤舵湡璁″垝鏁�
+      deviceNum: 0, // 浠婃棩鐢熶骇璁惧鏁�
+      ingNum: 0, // 鎵ц涓鍒掓暟
+      prouserNum: 0, // 浠婃棩鐢熶骇浜烘暟
+      unqualifiedRate: 0, // 浠婃棩涓嶈壇鍝佺巼
+      procedureName: '' // 宸ュ簭鍚嶇О
+    };
+  },
+
+  actions: {
+    // 璁剧疆浼佷笟id
+    setCompanyId(companyId) {
+      this.companyId = companyId;
+      window.sessionStorage.setItem('companyId', companyId);
+    },
+    // 璁剧疆缁勭粐id
+    setDepartId(departId) {
+      this.departId = departId;
+      window.sessionStorage.setItem('departId', departId);
+    },
+    setNum(num) {
+      this.delayNum = num.delayNum
+      this.deviceNum = num.deviceNum
+      this.ingNum = num.ingNum
+      this.prouserNum = num.prouserNum
+      this.unqualifiedRate = num.unqualifiedRate
+    },
+    setProcedureName(title) {
+      this.procedureName = title
+    }
   }
 
-  return { count, doubleCount, increment }
 })
--
Gitblit v1.9.3