Your ROOT_URL in app.ini is http://git.zky.com/ but you are visiting http://61.178.84.89:8998/luoluo/ry_zhky/commit/814bff070edeff202250d9f0c48065c34a8fbd88?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
1887 additions and
18 deletions
@ -101,13 +101,14 @@ public class SysUsernumController extends BaseController {
List < SysUser > list = new ArrayList < > ( ) ;
List < SysRole > sysRoles = new ArrayList < > ( ) ;
for ( SysUser User : sysUsers ) {
if ( User . getDeptId ( ) . equals ( deptId ) ) {
List < SysUserRole > sysUserRoles = userService . selectUserRoleByUserId ( User . getUserId ( ) ) ;
for ( SysUserRole UserRole : sysUserRoles ) {
SysRole sysRole = roleService . selectRoleById ( UserRole . getRoleId ( ) ) ;
sysRoles . add ( sysRole ) ;
}
User . setRoles ( sysRoles ) ;
if ( User . getDeptId ( ) . equals ( deptId ) ) {
list . add ( User ) ;
}
}
File diff suppressed because it is too large
Load Diff
@ -110,7 +110,7 @@
align: 'center',
formatter: function(value, row, index) {
var actions = [];
actions.push('< a class = "btn btn- warning btn-xs ' + detailFlag + '" href = "javascript:void(0)" onclick = "print(\'' + row.deptId + '\')" > < i class = "fa fa- search"> < / i > 详细 < / a > ');
actions.push('< a class = "btn btn- info btn-xs ' + detailFlag + '" href = "javascript:void(0)" onclick = "print(\'' + row.deptId + '\')" > < i class = "fa fa- download"> < / i > 打印 < / a > ');
return actions.join(''); }
}]
};