eight
2024-10-24 d85bd456d094842dbc47c19438df882f3d7c6c66
bug fix
已修改5个文件
12 ■■■■ 文件已修改
src/views/ecg/appointment/AppointmentConfirm.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/ecg/appointment/AppointmentForm.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/ecg/appointment/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/ecg/doctor/components/QueuePanel.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/ecg/queue/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/ecg/appointment/AppointmentConfirm.vue
@@ -148,7 +148,7 @@
  bookTime: new Date(),
  bookDate: new Date(),
  bookTimeslot: 9000930,
  bookCheckType: 10
  bookCheckType: checkTypeStore.getCheckTypeName(100)
})
const formRef = ref() // 表单 Ref
src/views/ecg/appointment/AppointmentForm.vue
@@ -189,7 +189,7 @@
  bookTime: undefined,
  bookDate: new Date().getTime(),
  bookTimeslot: 9000930,
  bookCheckType: 10,
  bookCheckType: 100, //常规检查
  paid: 0,
})
const formRules = reactive({
@@ -265,7 +265,7 @@
    bookTime: undefined,
    bookDate: new Date().getTime(),
    bookTimeslot: 9000930,
    bookCheckType: 10
    bookCheckType: checkTypeStore.getCheckTypeName(100)
  }
  formRef.value?.resetFields()
}
src/views/ecg/appointment/index.vue
@@ -229,7 +229,7 @@
      </el-table-column>
      <el-table-column label="预约检查类型" align="center" prop="bookCheckType">
        <template #default="scope">
          checkTypeStore.getCheckTypeName(scope.row.bookCheckType)
          {{checkTypeStore.getCheckTypeName(scope.row.bookCheckType)}}
        </template>
      </el-table-column>
      <el-table-column label="预约来源" align="center" prop="bookSrc">
src/views/ecg/doctor/components/QueuePanel.vue
@@ -53,7 +53,7 @@
  <span style="display:inline-block; width:70px;"> {{item.seqNum}} &nbsp; {{item.patName}}{{item.passed === 0 ? "":"*"}} </span>
  <dict-tag :type="DICT_TYPE.SYSTEM_USER_SEX" :value="item.patGender" />
<!--  {{item.roomName}} {{item.bedNo}}-->
  checkTypeStore.getCheckTypeName(item.bookCheckType)
  {{checkTypeStore.getCheckTypeName(item.bookCheckType)}}
  <dict-tag :type="DICT_TYPE.ECG_QUEUE_STATUS" :value="item.status" />
  <el-button v-if="item.status === 5 || item.status === 7" @click="recall(item)"> 召回 </el-button>
</div>
src/views/ecg/queue/index.vue
@@ -137,7 +137,7 @@
      </el-table-column>
      <el-table-column label="检查类型" align="center" prop="bookCheckType" >
        <template #default="scope">
          checkTypeStore.getCheckTypeName(scope.row.bookCheckType)
          {{checkTypeStore.getCheckTypeName(scope.row.bookCheckType)}}
        </template>
      </el-table-column>
        <el-table-column label="排队序号" align="center" prop="seqNum" />