From 482f58537fa3f0cab93b88c6d0bcb803e0431cfc Mon Sep 17 00:00:00 2001
From: houruijun <411269194@kidgrow.com>
Date: Wed, 23 Sep 2020 15:51:08 +0800
Subject: [PATCH] 1.增加后台开通医院/科室的单次支付功能,并自动充入指定套餐 2.新增查询医院科室是否开通单次支付功能的接口 3.新增查询医院科室的支付单价 4.修改扣费业务4个接口,增加支持单次支付的判断与处理 5.增加接口,查看某个诊断的支付状态

---
 kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/doctor.html |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/doctor.html b/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/doctor.html
index 6b072f7..30f7296 100644
--- a/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/doctor.html
+++ b/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/doctor.html
@@ -410,7 +410,7 @@
                         },
                         {
                             field: 'doctorName',
-                            width: "150",
+                            width: "100",
                             title: '医生姓名',
                             fixed: 'left'
                         },
@@ -431,7 +431,7 @@
                         },
                         {
                             field: 'isAnswer',
-                            width: "100",
+                            width: "75",
                             title: '医答',
                             templet: function (d) {
                                 return d.isAnswer ? "是" : "否"
@@ -439,13 +439,21 @@
                         },
                         {
                             field: 'isSigning',
-                            width: "100",
+                            width: "75",
                             title: '签约',
                             templet: function (d) {
                                 return d.isSigning ? "是" : "否"
                             }
                         },
                         {
+                            field: 'isAdminUser',
+                            width: "100",
+                            title: '是否管理员',
+                            templet: function (d) {
+                                return d.isAdminUser ? "管理员" : "普通医生"
+                            }
+                        },
+                        {
                             field: 'createTime',
                             width: "120",
                             sort: true,

--
Gitblit v1.8.0