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/sysdictionaries.html |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/sysdictionaries.html b/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/sysdictionaries.html
index 79ecf3f..1697a1c 100644
--- a/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/sysdictionaries.html
+++ b/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/sysdictionaries.html
@@ -112,18 +112,18 @@
             headers: { 'Authorization': 'Bearer ' + config.getToken().access_token },
             page: true,
             cols: [[
-                { type: 'numbers' },
+                { type: 'numbers', width: "10%",align: 'center',},
                 {
-                    field: 'dictionariesClassId', width: 180, title: '字典类型', templet: function (d) {
+                    field: 'dictionariesClassId', width: "10%",align: 'center', title: '字典类型', templet: function (d) {
                         return d.dictionariesClassId == undefined ? "分类" : "字典"
                     }
                 },
-                { field: 'dictionariesClassName', width: 200, title: '字典分类' },
-                { field: 'dictionariesKey', width: 180, title: '字典Key' },
-                { field: 'dictionariesName', width: 264, title: '字典值' },
-                { field: 'id', width: 250, align: 'center', toolbar: '#dictionaries-tpl-state', title: '状态' },// 0就诊数据 1筛查
-                { field: 'createTime', width: 250, title: '创建时间', templet: "<div>{{layui.util.toDateString(d.createTime, 'yyyy-MM-dd HH:mm')}}</div>" },
-                { field: 'id', width: 250, align: 'center', toolbar: '#dictionaries-table-bar', title: '操作' },// 0就诊数据 1筛查
+                { field: 'dictionariesClassName', width: "10%",align: 'center', title: '字典分类' },
+                { field: 'dictionariesKey', width: "20%",align: 'center', title: '字典Key' },
+                { field: 'dictionariesName', width: "10%",align: 'center', title: '字典值' },
+                { field: 'id',  width: "10%",align: 'center', toolbar: '#dictionaries-tpl-state', title: '状态' },// 0就诊数据 1筛查
+                { field: 'createTime',  width: "10%",align: 'center', title: '创建时间', templet: "<div>{{layui.util.toDateString(d.createTime, 'yyyy-MM-dd HH:mm')}}</div>" },
+                { field: 'id', width: "10%",align: 'center', toolbar: '#dictionaries-table-bar', title: '操作' },// 0就诊数据 1筛查
             ]],
             done:function(res){
                 permissionsInput(res,config);

--
Gitblit v1.8.0