测试问题修复

This commit is contained in:
cwchen 2025-02-13 09:14:57 +08:00
parent 3095177ba8
commit 516b83f1dd
3 changed files with 11 additions and 6 deletions

View File

@ -36,10 +36,11 @@
sl.operation_function,
sl.operation_record,
sl.operation_status,
sl.createTime
sl.createTime,
su.username
FROM
sys_logs sl
LEFT JOIN sys_user su ON sl.userId = su.id
<where>
<if test="user.username != null and user.username != ''">
and (

View File

@ -100,6 +100,7 @@
uploadInst.config.elem.next()[0].value = '';
obj.preview(function(index, file, result){
$('#fileName').html(file.name);
i++;
});

View File

@ -81,13 +81,16 @@
{field:'ano', width:80, title: '序号' ,templet:function(res){
return res.LAY_INDEX;
}}
,{field: 'userid', width: 190, title: '用户名'}
,{field: 'username', width: 190, title: '用户名'}
,{field: 'isApp', title: '操作子系统'}
,{field: 'module', width:190, title: '操作模块'}
,{field: 'operationFunction', title: '操作功能'}
,{field: 'operationRecord', title: '操作记录'}
// ,{field: 'operationFunction', title: '操作功能'}
// ,{field: 'operationRecord', title: '操作记录'}
,{field: 'createtime', title: '操作时间'}
,{field: 'operationStatus', title: '操作状态'}
,{field: 'operationStatus', title: '操作状态',
templet: function (d) {
return '成功';
}}
]],
id : 'menuTable'
});