- 日期:
+ 日期:
+
+
次数:
视力:
光斑大小:
@@ -87,7 +93,13 @@
|
- 日期:
+ 日期:
+
+
次数:
视力:
光斑大小:
@@ -279,24 +291,42 @@ export default {
this.confirmData.zlqJbfqOs = detail.zlqJbfqOs || ''
this.confirmData.zlqSytOs = detail.zlqSytOs || ''
// 治疗
- this.confirmData.jgzlDateOd1 = detail.jgzlDateOd1 || ''
- this.confirmData.jgzlCountOd1 = detail.jgzlCountOd1 || ''
- this.confirmData.jgzlDsOd1 = detail.jgzlDsOd1 || ''
- this.confirmData.jgzlSlOd1 = detail.jgzlSlOd1 || ''
- this.confirmData.jgzlGlOd1 = detail.jgzlGlOd1 || ''
- this.confirmData.jgzlGbOd1 = detail.jgzlGbOd1 || ''
- this.confirmData.jgzlSytOd1 = detail.jgzlSytOd1 || ''
+ this.treatData.forEach((item, index) => {
+ item.OD.date = detail[`jgzlDateOd${index + 1}`]
+ item.OD.order = detail[`jgzlCountOd${index + 1}`]
+ item.OD.count = detail[`jgzlDsOd${index + 1}`]
+ item.OD.vision = detail[`jgzlSlOd${index + 1}`]
+ item.OD.power = detail[`jgzlGlOd${index + 1}`]
+ item.OD.flareSize = detail[`jgzlGbOd${index + 1}`]
+ item.OD.imgSrc = detail[`jgzlSytOd${index + 1}`]
+ item.OS.date = detail[`jgzlDateOs${index + 1}`]
+ item.OS.order = detail[`jgzlCountOs${index + 1}`]
+ item.OS.count = detail[`jgzlDsOs${index + 1}`]
+ item.OS.vision = detail[`jgzlSlOs${index + 1}`]
+ item.OS.power = detail[`jgzlGlOs${index + 1}`]
+ item.OS.flareSize = detail[`jgzlGbOs${index + 1}`]
+ item.OS.imgSrc = detail[`jgzlSytOs${index + 1}`]
+ })
})
},
// 保存传值处理
handleConfirmData() {
- this.confirmData.jgzlDateOd1 = this.treatData[0].OD.date
- this.confirmData.jgzlCountOd1 = this.treatData[0].OD.order
- this.confirmData.jgzlDsOd1 = this.treatData[0].OD.count
- this.confirmData.jgzlSlOd1 = this.treatData[0].OD.vision
- this.confirmData.jgzlGlOd1 = this.treatData[0].OD.power
- this.confirmData.jgzlGbOd1 = this.treatData[0].OD.flareSize
- this.confirmData.jgzlSytOd1 = this.treatData[0].OD.imgSrc
+ this.treatData.forEach((item, index) => {
+ this.confirmData[`jgzlDateOd${index + 1}`] = item.OD.date
+ this.confirmData[`jgzlCountOd${index + 1}`] = item.OD.order
+ this.confirmData[`jgzlDsOd${index + 1}`] = item.OD.count
+ this.confirmData[`jgzlSlOd${index + 1}`] = item.OD.vision
+ this.confirmData[`jgzlGlOd${index + 1}`] = item.OD.power
+ this.confirmData[`jgzlGbOd${index + 1}`] = item.OD.flareSize
+ this.confirmData[`jgzlSytOd${index + 1}`] = item.OD.imgSrc
+ this.confirmData[`jgzlDateOS${index + 1}`] = item.OS.date
+ this.confirmData[`jgzlCountOS${index + 1}`] = item.OS.order
+ this.confirmData[`jgzlDsOS${index + 1}`] = item.OS.count
+ this.confirmData[`jgzlSlOS${index + 1}`] = item.OS.vision
+ this.confirmData[`jgzlGlOS${index + 1}`] = item.OS.power
+ this.confirmData[`jgzlGbOS${index + 1}`] = item.OS.flareSize
+ this.confirmData[`jgzlSytOS${index + 1}`] = item.OS.imgSrc
+ })
},
// 保存
handleSaveTable() {
diff --git a/src/page-subspecialty/views/modules/nurseManagement/addProject.vue b/src/page-subspecialty/views/modules/nurseManagement/addProject.vue
index a6dd038..f6110a8 100644
--- a/src/page-subspecialty/views/modules/nurseManagement/addProject.vue
+++ b/src/page-subspecialty/views/modules/nurseManagement/addProject.vue
@@ -1,5 +1,5 @@
-
+
@@ -123,6 +123,10 @@ export default {
isShow: {
type: Boolean,
default: false
+ },
+ title: {
+ type: String,
+ default: ''
}
},
data() {
@@ -142,7 +146,6 @@ export default {
}],
tableData: [
{
- Mon: 'Mon',
time: '上午',
MonTime: false,
TuesTime: false,
@@ -152,7 +155,6 @@ export default {
SatTime: false,
SunTime: false
}, {
- Mon: 'Mon',
time: '下午',
MonTime: false,
TuesTime: false,
diff --git a/src/page-subspecialty/views/modules/nurseManagement/reservation/schedule/doctor-schedule.vue b/src/page-subspecialty/views/modules/nurseManagement/reservation/schedule/doctor-schedule.vue
index 9e283e1..94651ab 100644
--- a/src/page-subspecialty/views/modules/nurseManagement/reservation/schedule/doctor-schedule.vue
+++ b/src/page-subspecialty/views/modules/nurseManagement/reservation/schedule/doctor-schedule.vue
@@ -23,7 +23,7 @@
设为默认
- 医生列表
+ 检查项目
-
@@ -444,10 +443,10 @@ export default {
allPtClick() {
if(this.sortName === '批量排台') {
this.sortName = '保存设置'
- this.getBatchNumSet()
+ // this.getBatchNumSet()
} else {
this.sortName = '批量排台'
- this.batchNumSave()
+ // this.batchNumSave()
}
},
// 批量排台获取
diff --git a/src/page-subspecialty/views/modules/nurseManagement/reservation/subList/index.vue b/src/page-subspecialty/views/modules/nurseManagement/reservation/subList/index.vue
index 19d53f0..6167a9c 100644
--- a/src/page-subspecialty/views/modules/nurseManagement/reservation/subList/index.vue
+++ b/src/page-subspecialty/views/modules/nurseManagement/reservation/subList/index.vue
@@ -1,119 +1,120 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ scope.row.mainDoctorName ? scope.row.mainDoctorName : '-' }}
-
-
-
-
- {{ scope.row.orderTime ? scope.row.orderTime : '-' }}
-
-
-
-
- OU:{{ scope.row.ouOpera }}
- OD:{{ scope.row.odOpera }}
- OS:{{ scope.row.osOpera }}
-
-
-
-
-
-
- 等待签到
-
-
-
- 等待呼叫
-
-
-
- 呼叫中
-
-
-
- 手术中
-
-
-
- 手术结束
-
-
-
- 已取消
-
-
-
-
-
- 改约
- 取消
- 患者360
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.doctorName ? scope.row.doctorName : '-' }}
+
+
+
+
+ {{ scope.row.appointDate ? scope.row.appointDate : '-' }}
+
+
+
+
+
+
+ 改约
+ 取消
+ 患者360
+
+
+
+
+
+
+
+
|