From a8de0c774a40a9436acd1009da8a38e7cda24157 Mon Sep 17 00:00:00 2001
From: zhaoxiaohao <913652501@qq.com>
Date: Fri, 14 Aug 2020 16:09:55 +0800
Subject: [PATCH] 修改页面小bug
---
kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/doctorTemplete.html | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/doctorTemplete.html b/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/doctorTemplete.html
index 10d0e88..7922a67 100644
--- a/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/doctorTemplete.html
+++ b/kidgrow-web/kidgrow-web-manager/src/main/resources/static/pages/opration/doctorTemplete.html
@@ -68,8 +68,8 @@
<div class="layui-input-block">
<select id="publicType-add" name="publicType" placeholder="开放类型" lay-verify="required" required>
<option value="">-请选择-</option>
- <option value="1">公开</option>
- <option value="0">私有</option>
+ <option value="0">公开</option>
+ <option value="1">私有</option>
</select>
</div>
</div>
@@ -115,14 +115,14 @@
page: true,
cols: [[
{ type: 'numbers' },
- { field: 'templeteTitle', width: 180, sort: true, title: '标题' },
+ { field: 'templeteTitle',align:'center', width: 180, sort: true, title: '标题' },
{
- field: 'publicType', width: 200, sort: true, title: '开放类型', templet: function (d) {
+ field: 'publicType',align:'center', width: 200, sort: true, title: '开放类型', templet: function (d) {
return d.publicType ==true ? "私有" : "公开"
}
},
{
- field: 'templeteType', width: 180, sort: true, title: '话术类型', templet: function (d) {
+ field: 'templeteType',align:'center', width: 180, sort: true, title: '话术类型', templet: function (d) {
if (d.templeteType == 0) {
return "结论";
} else if (d.templeteType == 1) {
@@ -132,10 +132,10 @@
}
}
},
- { field: 'createUserName', width: 300, sort: true, title: '创建者' },
- { field: 'createTime', width: 250, sort: true, title: '创建时间', templet: "<div>{{layui.util.toDateString(d.createTime, 'yyyy/MM/dd HH:mm')}}</div>" },
- { field: 'enabled', width: 100, sort: true, templet: '#doctor-templete-tpl-state', title: '状态' },
- { field: 'recordTitle', width: 300, toolbar: '#doctor-templete-table-bar', sort: true, title: '操作' },
+ { field: 'createUserName',align:'center', width: 300, sort: true, title: '创建者' },
+ { field: 'createTime',align:'center', width: 250, sort: true, title: '创建时间', templet: "<div>{{layui.util.toDateString(d.createTime, 'yyyy/MM/dd HH:mm')}}</div>" },
+ { field: 'enabled',align:'center', width: 100, sort: true, templet: '#doctor-templete-tpl-state', title: '状态' },
+ { field: 'recordTitle',align:'center', width: 150, toolbar: '#doctor-templete-table-bar', sort: true, title: '操作' },
]],
done:function(res){
permissionsInput(res,config);
--
Gitblit v1.8.0