src/store/modules/checkType.ts | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/views/ecg/appointment/AppointmentConfirm.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/store/modules/checkType.ts
@@ -11,6 +11,7 @@ displayBarcode: [] notes: string seqPrefix: string // 序号前缀 expenseRecognition: number } export interface CheckTypeState { checkTypeMap: Map<number, CheckTypeSimpleVO> @@ -91,6 +92,12 @@ } return this.checkTypeMap[type].seqPrefix }, getExpenseRecognition(type: number) { if (!this.isSetCheckType) { this.setCheckTypeMap() } return this.checkTypeMap[type].expenseRecognition }, async resetCheckTypeInfo() { wsCache.delete(CACHE_KEY.CHECKTYPE_CACHE) const res = await CheckTypeApi.getSimpleCheckTypeList() src/views/ecg/appointment/AppointmentConfirm.vue
@@ -6,7 +6,7 @@ </div> <div style="display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 20px"> <div v-for="_appointment in appointmentVOList" :key="_appointment.applyNo"> <div v-for="(_appointment, index) in appointmentVOList" :key="index"> <CheckItemPanel :appointment="_appointment" @event_appoint_confirm="onEventAppointConfirm"/> </div> </div>