From e1ff27349fa0d6151f492ceff344de3135caae6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BD=97=E6=96=8C=E6=9D=B0?= <> Date: Mon, 9 Dec 2024 10:31:28 +0800 Subject: [PATCH] ui --- src/components/patientRegister/PatientRegisterList.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/patientRegister/PatientRegisterList.vue b/src/components/patientRegister/PatientRegisterList.vue index 2cceffa..b1fb7e4 100644 --- a/src/components/patientRegister/PatientRegisterList.vue +++ b/src/components/patientRegister/PatientRegisterList.vue @@ -2122,7 +2122,7 @@ export default { tableDatas.forEach((e, index) => { if (index) e.sn = index + 1 if (e.completeFlag) e.completeFlag = e.isAudit == "Y" ? "已审核" : dddw(this.dict.completeFlag, "id", e.completeFlag, "displayName") - if (e.guidePrintTimes) e.guidePrintTimes = e.guidePrintTimes > 0 ? '打印' : '' + if (e.guidePrintTimes.toString())e.guidePrintTimes = e.guidePrintTimes > 0 ? '打印' : '' if (e.isLock) e.isLock = e.isLock == 'Y' ? '锁住' : '' if (e.sexId) e.sexId = dddw(this.dict.sex, "id", e.sexId, "displayName") if(e.patientRegisterNo)e.patientRegisterNo='&'+e.patientRegisterNo @@ -2149,7 +2149,8 @@ export default { if (e.qztlIsFj) e.qztlIsFj = e.qztlIsFj == "Y" ? "是" : "否" }) this.tableName = '人员登记列表' + moment(new Date()).format('yyyyMMDDHHmmss') + '.xls' - return tableDatas; + console.log(tableDatas) + // return tableDatas; // const columns = this.$refs.info.getColumns(); // 获取列信息 // const data = this.$refs.info.getData(); // 获取数据 // console.log(columns)