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/caae27e225631ccb7ea8a6882edce90be95faf21?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
1150 additions and
6 deletions
@ -95,7 +95,6 @@ public class SysUserExamineController extends BaseController {
@RequiresPermissions ( "system:userexamine:examineprint" )
@RequiresPermissions ( "system:userexamine:examineprint" )
@Log ( title = "用户审核" , businessType = BusinessType . PRINT )
@Log ( title = "用户审核" , businessType = BusinessType . PRINT )
@GetMapping ( "/examineprint/{userId}" )
@GetMapping ( "/examineprint/{userId}" )
@ResponseBody
public String paint ( @PathVariable ( "userId" ) Long userId , ModelMap mmap )
public String paint ( @PathVariable ( "userId" ) Long userId , ModelMap mmap )
{
{
List < SysRole > roles = roleService . selectRolesByUserId ( userId ) ;
List < SysRole > roles = roleService . selectRolesByUserId ( userId ) ;
File diff suppressed because it is too large
Load Diff
@ -113,10 +113,10 @@
var actions = [];
var actions = [];
if(row.examine !== '2'){
if(row.examine !== '2'){
actions.push('< a disabled class = "btn btn-success btn-xs ' + examineFlag + '" href = "javascript:void(0)" > < i class = "fa fa-edit" > < / i > 审核< / a > ');
actions.push('< a disabled class = "btn btn-success btn-xs ' + examineFlag + '" href = "javascript:void(0)" > < i class = "fa fa-edit" > < / i > 审核< / a > ');
actions.push('< a class = "btn btn-success btn-xs ' + downloadFlag + '" href = "javascript:void(0)" > < i class = "fa fa-download" > < / i > 打印< / a > ');
actions.push('< a class = "btn btn-success btn-xs ' + downloadFlag + '" href = "javascript:void(0)" onclick = "examineprint(\'' + row.userId + '\')" > < i class = "fa fa-download" > < / i > 打印< / a > ');
}else{
}else{
actions.push('< a class = "btn btn-success btn-xs ' + examineFlag + '" href = "javascript:void(0)" onclick = "examinedetail(\'' + row.userId + '\')" > < i class = "fa fa-edit" > < / i > 审核< / a > ');
actions.push('< a class = "btn btn-success btn-xs ' + examineFlag + '" href = "javascript:void(0)" onclick = "examinedetail(\'' + row.userId + '\')" > < i class = "fa fa-edit" > < / i > 审核< / a > ');
actions.push('< a class = "btn btn-success btn-xs ' + downloadFlag + '" href = "javascript:void(0)" onclick = " download (\'' + row.userId + '\')"> < i class = "fa fa-download" > < / i > 打印< / a > ');
actions.push('< a class = "btn btn-success btn-xs ' + downloadFlag + '" href = "javascript:void(0)" onclick = " examineprint (\'' + row.userId + '\')"> < i class = "fa fa-download" > < / i > 打印< / a > ');
}
}
return actions.join('');
return actions.join('');
}
}
@ -128,9 +128,9 @@
var url ='/system/userexamine/examine/' + id;
var url ='/system/userexamine/examine/' + id;
$.modal.openTab("涉密人员审核", url);
$.modal.openTab("涉密人员审核", url);
}
}
function download (id){
function examineprint (id){
var url ='/ system/userexamine/examine/' + id;
var url ='system/userexamine/examineprint /' + id;
$.modal.openTab("涉密人员审核 ", url);
$.modal.openTab("打印 ", url);
}
}
< / script >
< / script >
< / body >
< / body >