eight
2024-12-11 69b18cf813e7f742ff343a358c580c329c9acda5
预约确认有时不会弹出的问题修改
已修改2个文件
9 ■■■■ 文件已修改
src/store/modules/checkType.ts 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/ecg/appointment/AppointmentConfirm.vue 2 ●●● 补丁 | 查看 | 原始文档 | 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>