|
@@ -428,13 +428,14 @@ function bindScoreDetail() {
|
|
|
const index = $(this).parent().index()
|
|
|
const id = tabList[index].behospitalCode
|
|
|
const age = tabList[index].age;
|
|
|
+ const name = tabList[index].name;
|
|
|
const checkStatus = tabList[index].checkStatus
|
|
|
- scoreDetail(id, age, getCookie("hospitalid"), 'YH-ZKHC-LBXQ', tabList[index].name)
|
|
|
+ scoreDetail({id, age,name,hid:getCookie("hospitalid"), code:'YH-ZKHC-LBXQ'})
|
|
|
});
|
|
|
}
|
|
|
-function scoreDetail(id, age, hid, code) {
|
|
|
+function scoreDetail(it) {
|
|
|
|
|
|
- window.open(`./qcScore.html?id=${id}&age=${age}&hid=${hid}&code=${code}`)
|
|
|
+ window.open(`./qcScore.html?id=${it.id}&age=${it.age}&name=${it.name}&hid=${it.hid}&code=${it.code}`)
|
|
|
}
|
|
|
function isTextCenter(name) {
|
|
|
const textCenterList = ['level', 'scoreRes', 'sex', 'age', 'behospitalDate', 'leaveHospitalDate', 'placefileDate', 'gradeTime', 'checkStatus', 'mrStatus', 'mrTime', 'chTime', 'chName', 'mrName', 'diagnose', 'behDoctorName', 'directorDoctorName', 'doctorName', 'name']
|