From f7c5db77d404397bf9c35ab1ddc7e03639d131a3 Mon Sep 17 00:00:00 2001 From: zhaoxiaohao <279049017@qq.com> Date: Tue, 26 Jan 2021 15:49:57 +0800 Subject: [PATCH] 修改 密码时,如果手机号为空就可以修改; --- kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/hospital.html | 14 ++++++++++++-- 1 files changed, 12 insertions(+), 2 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 8feeec5..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,13 +106,23 @@ }, { field: 'hospitalLink', - width: "6%", + width: "7%", title: '联系人' }, { field: 'hospitalTel', width: "8%", title: '联系方式' + }, + { + field: 'departmentLink', + width: "6%", + title: '科室联系人' + }, + { + field: 'departmentTel', + width: "8%", + title: '科室联系方式' }, { field: 'orderType', width: 80, title: '状态', templet: function (d) { @@ -341,7 +351,7 @@ where: { 'hospitalId': data.hospitalId, 'departmentId': data.departmentId, - 'enabled': 1 + 'enabled': true }, headers: { 'Authorization': 'Bearer ' + config.getToken().access_token -- Gitblit v1.8.0