|
|
@ -254,16 +254,17 @@ export default { |
|
|
|
value: '400', |
|
|
|
label: '已诊' |
|
|
|
}], |
|
|
|
eyeList: [{ |
|
|
|
value: 'OD', |
|
|
|
label: 'OD' |
|
|
|
}, { |
|
|
|
value: 'OS', |
|
|
|
label: 'OS' |
|
|
|
}, { |
|
|
|
value: 'OU', |
|
|
|
label: 'OU' |
|
|
|
}], |
|
|
|
eyeList: [ |
|
|
|
{ |
|
|
|
value: 'OD', |
|
|
|
label: 'OD' |
|
|
|
}, { |
|
|
|
value: 'OS', |
|
|
|
label: 'OS' |
|
|
|
}, { |
|
|
|
value: 'OU', |
|
|
|
label: 'OU' |
|
|
|
}], |
|
|
|
nextVisitTime: [], |
|
|
|
appointRange: [], |
|
|
|
onlyRead: false, |
|
|
@ -297,6 +298,9 @@ export default { |
|
|
|
this.queryProjectList() |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
reFresh() { |
|
|
|
this.pageCurrentChangeHandle(this.page) |
|
|
|
}, |
|
|
|
// 展示列表项目列 |
|
|
|
getYLProject(list) { |
|
|
|
if (!list.length) { |
|
|
@ -375,6 +379,7 @@ export default { |
|
|
|
this.$message.error(res.msg) |
|
|
|
} |
|
|
|
}, |
|
|
|
// 结束 |
|
|
|
finishTreat(scope) { |
|
|
|
const idList = scope.zlProjectList.map(item => item.id) |
|
|
|
if (!idList.length) { |
|
|
@ -384,7 +389,7 @@ export default { |
|
|
|
this.receiveTreat(scope) |
|
|
|
this.$http.post('/patient/updateProjectStatus', idList).then((res) => { |
|
|
|
this.$message.success(res.data.data) |
|
|
|
this.getDataListInitial() |
|
|
|
this.pageCurrentChangeHandle(this.page) |
|
|
|
}) |
|
|
|
}, |
|
|
|
// 查看详情 |
|
|
@ -408,7 +413,7 @@ export default { |
|
|
|
type: '2' |
|
|
|
}}).then(res => { |
|
|
|
this.$message.success(res.data.data) |
|
|
|
this.getDataListInitial() |
|
|
|
this.pageCurrentChangeHandle(this.page) |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, |
|
|
|