fix issue #I3YVBH 兼容oracle 11g

add load all users/roles for flowinstance
fix issue #I3W5YR
This commit is contained in:
yubaolee
2021-07-05 21:44:35 +08:00
parent b94fba7c19
commit 38a62595ba
15 changed files with 205 additions and 60 deletions

View File

@@ -59,7 +59,7 @@ layui.config({
})
//系统基本参数
$(".version").text("v2.0"); //当前版本
$(".version").text("v3.2"); //当前版本
$(".author").text("yubaolee"); //开发作者
$(".homePage").text("/Home/Index"); //网站首页
$(".server").text("centos docker"); //服务器环境

View File

@@ -21,6 +21,9 @@
, size: 'sm' //小尺寸的表格
,page: true,
url: '/SysMessages/Load',
where:{
status:999 //全部消息
},
cols: [[ //表头
{ field: 'Title', title: '消息标题' }
, { field: 'Content', title: '内容' }
@@ -43,6 +46,7 @@
if (options != undefined) {
$.extend(config, options);
}
config.status = 999; //全部消息
table.reload('mainList',
{
url: '/SysMessages/Load',