From f085b0783327a460fd0b2802e9f1b7cdbee3cde9 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期一, 02 十二月 2024 13:53:13 +0800
Subject: [PATCH] 预约确认 时段选择 开放
---
src/store/modules/checkType.ts | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/src/store/modules/checkType.ts b/src/store/modules/checkType.ts
index 54b50fd..459548c 100644
--- a/src/store/modules/checkType.ts
+++ b/src/store/modules/checkType.ts
@@ -8,7 +8,8 @@
export interface CheckTypeSimpleVO {
value: number
name: string
- displayBarcode: number
+ displayBarcode: []
+ notes: string
}
export interface CheckTypeState {
checkTypeMap: Map<number, CheckTypeSimpleVO>
@@ -77,6 +78,12 @@
}
return this.checkTypeMap[type].displayBarcode
},
+ getCheckTypeNotes(type: number) {
+ if (!this.isSetCheckType) {
+ this.setCheckTypeMap()
+ }
+ return this.checkTypeMap[type].notes
+ },
async resetCheckTypeInfo() {
wsCache.delete(CACHE_KEY.CHECKTYPE_CACHE)
const res = await CheckTypeApi.getSimpleCheckTypeList()
--
Gitblit v1.9.3