From 0a8b731d9cf46c78c0c4c66fa9954eeb262e4017 Mon Sep 17 00:00:00 2001 From: luliqiang <kidgrow> Date: Mon, 10 Aug 2020 09:20:50 +0800 Subject: [PATCH] Merge branch 'dev' of http://192.168.2.240:7070/r/kidgrow-microservices-platform into dev --- kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/feedback.html | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/feedback.html b/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/feedback.html index a4f180f..526b5ed 100644 --- a/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/feedback.html +++ b/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/feedback.html @@ -8,11 +8,11 @@ </div> <div class="layui-card-body"> <div class="layui-form toolbar">  - <input id="user-search-value" class="layui-input search-input" type="text" placeholder="输入医生姓名" />  - <input type="text" name="date" id="datebegin" lay-verify="date" placeholder="yyyy-MM-dd" autocomplete="off" + <input id="user-search-value" class="layui-input search-input" type="text" placeholder="按医生姓名" />  + <input type="text" name="date" id="datebegin" lay-verify="date" placeholder="开始时间" autocomplete="off" class="layui-input search-input"> 至 - <input type="text" name="date" id="dateend" lay-verify="date" placeholder="yyyy-MM-dd" autocomplete="off" + <input type="text" name="date" id="dateend" lay-verify="date" placeholder="结束时间" autocomplete="off" class="layui-input search-input">   <button id="user-btn-search" class="layui-btn icon-btn permissioins" permissioins="feedback-list"><i class="layui-icon"></i>搜索</button> </div> @@ -84,9 +84,9 @@ }, function (data) { layer.closeAll('loading'); if (data.code == 0) { - layer.msg(data.msg, { icon: 1, time: 500 }); + layer.msg(data.msg, { icon: 1, time: 2000 }); } else { - layer.msg(data.msg, { icon: 2, time: 500 }); + layer.msg(data.msg, { icon: 2, time: 2000 }); $(obj.elem).prop('checked', !obj.elem.checked); form.render('checkbox'); } @@ -101,7 +101,7 @@ layer.load(2); admin.req('api-opration/sysfeedback/' + obj.data.id, {}, function (data) { layer.closeAll('loading'); - layer.msg(data.msg, { icon: 1, time: 500 }, function () { + layer.msg(data.msg, { icon: 1, time: 2000 }, function () { tableLoad(); }); obj.del(); @@ -126,7 +126,7 @@ }); } else { - layer.msg('未找到相关数据', { icon: 1, time: 500 }); + layer.msg('未找到相关数据', { icon: 1, time: 2000 }); } }, beforeSend: function (xhr) { -- Gitblit v1.8.0