From 7ea2a2cfe922c9b2d5c09c737d10a7f1ab5b50d1 Mon Sep 17 00:00:00 2001 From: zhaoxiaohao <279049017@qq.com> Date: Mon, 01 Mar 2021 14:14:35 +0800 Subject: [PATCH] Merge branch 'dev1.1' into dev --- kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/hospital.html | 25 ++++++++++++++++++++++--- 1 files changed, 22 insertions(+), 3 deletions(-) diff --git a/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/hospital.html b/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/hospital.html index c5f67cb..e8dd898 100644 --- a/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/hospital.html +++ b/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/hospital.html @@ -106,7 +106,7 @@ }, { field: 'hospitalLink', - width: "6%", + width: "7%", title: '联系人' }, { @@ -115,11 +115,21 @@ title: '联系方式' }, { + field: 'departmentLink', + width: "6%", + title: '科室联系人' + }, + { + field: 'departmentTel', + width: "8%", + title: '科室联系方式' + }, + { field: 'orderType', width: 80, title: '状态', templet: function (d) { if(d.orderType==null){ return ""; } - return d.orderType ? "试用" : "正式" + return d.orderType ? "正式" : "试用" } }, { @@ -340,7 +350,8 @@ method: 'GET', where: { 'hospitalId': data.hospitalId, - 'departmentId': data.departmentId + 'departmentId': data.departmentId, + 'enabled': true }, headers: { 'Authorization': 'Bearer ' + config.getToken().access_token @@ -360,6 +371,14 @@ title: '读片量(剩余)' }, { + field: 'ailightCount', + width: 150, + title: '读片使用量', + templet: function (d) { + return d.orderAilightCount-d.ailightCount; + } + }, + { field: 'recordCount', width: 150, title: '报告量(剩余)' -- Gitblit v1.8.0