From 64c9ab17a187d6087acbda902c01d14f5707922a Mon Sep 17 00:00:00 2001
From: houruijun <411269194@kidgrow.com>
Date: Sun, 28 Jun 2020 16:34:36 +0800
Subject: [PATCH] 1.调整扣费业务支持feign调用 2.更新运营平台支持统一格式化时间 3.修改zuu网关,增加请求头doctorId字段,修改departmentId字段的取值

---
 kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/doctor.html |    9 +++++++--
 1 files changed, 7 insertions(+), 2 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 c9642a3..d26f60e 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
@@ -220,7 +220,7 @@
         <div class="layui-form-item">
             <label class="layui-form-label">联系电话</label>
             <div class="layui-input-block">
-                <input name="doctorTel"  type="text" class="layui-input" maxlength="20" lay-verify="required|phone" required/>
+                <input name="doctorTel" id="doctorTel-add" type="text" class="layui-input" maxlength="20" lay-verify="required|phone" required/>
             </div>
         </div>
         <div class="layui-form-item">
@@ -290,7 +290,7 @@
         <div class="layui-form-item">
             <label class="layui-form-label" >登录帐号</label>
             <div class="layui-input-block">
-                <input name="username" id="username" type="text" class="layui-input" maxlength="15" lay-verify="required" required/>
+                <input name="username" id="username" readonly type="text" class="layui-input" maxlength="15" lay-verify="required" required/>
             </div>
         </div>
     </div>
@@ -542,6 +542,7 @@
             var doctorName = $('#doctorName').val();
             table.reload('app-table', { where: { doctorState: doctorState, hospitalId: hospitalName, doctorTel: doctorTel, doctorName: doctorName } });
         });
+       
         // 显示新增弹窗
         var showEditModel_add = function () {
             layer.open({
@@ -597,6 +598,10 @@
                     $("#username").blur(function () {
                         username_is_usered("username");
                     })
+                    $("#doctorTel-add").blur(function () {
+                        $("#username").val($("#doctorTel-add").val())
+                        username_is_usered("username");
+                    })
                 }
             });
         };

--
Gitblit v1.8.0