From 2f103ab4cf9a95b88cd86fbcf64a054aff72ff13 Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期三, 09 十月 2024 11:45:17 +0800 Subject: [PATCH] 列表显示 工位支持的检查类型 --- src/store/modules/user.ts | 27 ++++++++++++++++++++------- 1 files changed, 20 insertions(+), 7 deletions(-) diff --git a/src/store/modules/user.ts b/src/store/modules/user.ts index 53f2d69..a611f6c 100644 --- a/src/store/modules/user.ts +++ b/src/store/modules/user.ts @@ -23,7 +23,7 @@ // 鍖荤敓璇婂閫夋嫨 isSetRoom: boolean - room: RoomVO | null + room: RoomVO } export const useUserStore = defineStore('admin-user', { @@ -40,10 +40,10 @@ // 鍖荤敓璇婂閫夋嫨 isSetRoom: false, room: { - id: 0, - roomId: 0, - roomName: "", - bedNo: "", + id: null, + roomId: null, + roomName: null, + bedNo: null, status: null, docId: null, docName: null @@ -90,7 +90,13 @@ // 鍖荤敓鍏ュ骇 async setRoomInfoAction(room: RoomVO) { // 鏇存柊 store - this.room = room + this.room!.id = room.id + this.room!.roomId = room.roomId + this.room!.roomName = room.roomName + this.room!.bedNo = room.bedNo + this.room!.status = room.status + this.room!.docId = room.docId + this.room!.docName = room.docName this.isSetRoom = true // 鏇存柊 cache @@ -104,7 +110,14 @@ // 鍖荤敓绂诲骇 async clearRoomInfoAction() { // 娓� store - this.room = null + this.room.id = null + this.room.roomId = null + this.room.roomName = null + this.room.bedNo = null + this.room.status = null + this.room.docId = null + this.room.docName = null + this.isSetRoom = false // 鏇存柊 cache -- Gitblit v1.9.3