From f5df017deac69032a31b6f637c3ce80cd1c414cb Mon Sep 17 00:00:00 2001
From: zhaoxiaohao <279049017@qq.com>
Date: Wed, 03 Mar 2021 10:42:10 +0800
Subject: [PATCH] 将查看套餐的开始时间和结束时间与h端对应
---
kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/keaigao/screeningHospital.html | 31 +++++++++++++++++++++++++++----
1 files changed, 27 insertions(+), 4 deletions(-)
diff --git a/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/keaigao/screeningHospital.html b/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/keaigao/screeningHospital.html
index 282f27f..e56bb05 100644
--- a/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/keaigao/screeningHospital.html
+++ b/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/keaigao/screeningHospital.html
@@ -43,6 +43,9 @@
<button class="layui-btn layui-btn-xs" lay-event="downLoad">
下载二维码
</button>
+ <button class="layui-btn layui-btn-xs" lay-event="export">
+ 导出
+ </button>
</script>
<script type="text/html" id="hospital-push-state">
@@ -91,19 +94,25 @@
page: true,
cols: [
[{
- field: 'hospitalId',
- width: "150",
- title: '医院ID',
+ field: 'id',
+ width: "200",
+ title: '筛查医院ID',
fixed: 'left'
}, {
field: 'hospitalName',
width: "200",
title: '医院名称',
fixed: 'left'
+ }, {
+ field: 'departmentName',
+ width: "120",
+ title: '科室',
+ align: 'center',
+ fixed: 'left'
},
{
field: 'isScreeningPush',
- width: "120",
+ width: "100",
title: '推送状态',
align: 'center',
fixed: 'left',
@@ -229,6 +238,8 @@
downLoad(data.hospitalQrImage);
} else if (layEvent === 'edit') {
showEditModel_add("编辑", data);
+ }else if(layEvent === 'export'){
+ showEditModel_import("导出",data);
}
});
@@ -236,5 +247,17 @@
window.open(url);
}
+ var showEditModel_import = function (title, data) {
+ admin.putTempData('t_hospital', data);
+ admin.popupCenter({
+ title: title,
+ path: 'pages/keaigao/exportScreeningHospital.html',
+ area: '500px',
+ offset: '0px',
+ finish: function () {
+ }
+ });
+ };
+
});
</script>
\ No newline at end of file
--
Gitblit v1.8.0