From f030d8a9607cef32ee41e01d96817c7e47681602 Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期五, 30 五月 2025 15:18:47 +0800 Subject: [PATCH] 11 --- src/store/modules/checkType.ts | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/store/modules/checkType.ts b/src/store/modules/checkType.ts index 72d8b2c..069a36a 100644 --- a/src/store/modules/checkType.ts +++ b/src/store/modules/checkType.ts @@ -61,7 +61,7 @@ if (!this.isSetCheckType) { this.setCheckTypeMap() } - return this.checkTypeMap[type].name + return this.checkTypeMap[type]?.name }, getCheckTypeOptions() { if (!this.isSetCheckType) { @@ -78,7 +78,7 @@ if (!this.isSetCheckType) { this.setCheckTypeMap() } - return this.checkTypeMap[type].displayBarcode + return this.checkTypeMap[type]?.displayBarcode }, getCheckTypeNotes(type: number) { if (!this.isSetCheckType) { @@ -96,7 +96,7 @@ if (!this.isSetCheckType) { this.setCheckTypeMap() } - return this.checkTypeMap[type].expenseRecognition + return this.checkTypeMap[type]?.expenseRecognition }, async resetCheckTypeInfo() { wsCache.delete(CACHE_KEY.CHECKTYPE_CACHE) -- Gitblit v1.9.3