From d85bd456d094842dbc47c19438df882f3d7c6c66 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期四, 24 十月 2024 11:09:09 +0800
Subject: [PATCH] bug fix
---
src/views/ecg/appointment/index.vue | 2 +-
src/views/ecg/appointment/AppointmentConfirm.vue | 2 +-
src/views/ecg/appointment/AppointmentForm.vue | 4 ++--
src/views/ecg/doctor/components/QueuePanel.vue | 2 +-
src/views/ecg/queue/index.vue | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/views/ecg/appointment/AppointmentConfirm.vue b/src/views/ecg/appointment/AppointmentConfirm.vue
index d985e7c..f795312 100644
--- a/src/views/ecg/appointment/AppointmentConfirm.vue
+++ b/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
diff --git a/src/views/ecg/appointment/AppointmentForm.vue b/src/views/ecg/appointment/AppointmentForm.vue
index 9d7a19c..a1a18ed 100644
--- a/src/views/ecg/appointment/AppointmentForm.vue
+++ b/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()
}
diff --git a/src/views/ecg/appointment/index.vue b/src/views/ecg/appointment/index.vue
index 85eaf2a..e8e07c1 100644
--- a/src/views/ecg/appointment/index.vue
+++ b/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">
diff --git a/src/views/ecg/doctor/components/QueuePanel.vue b/src/views/ecg/doctor/components/QueuePanel.vue
index 935bf90..53315b4 100644
--- a/src/views/ecg/doctor/components/QueuePanel.vue
+++ b/src/views/ecg/doctor/components/QueuePanel.vue
@@ -53,7 +53,7 @@
<span style="display:inline-block; width:70px;"> {{item.seqNum}} {{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>
diff --git a/src/views/ecg/queue/index.vue b/src/views/ecg/queue/index.vue
index 700fbc2..32f3639 100644
--- a/src/views/ecg/queue/index.vue
+++ b/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" />
--
Gitblit v1.9.3