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/f930e5b3de7f3a681f90539aa253cff67f8ea448
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -23,10 +23,10 @@
< / div >
< div class = "btn-group-sm" id = "toolbar" role = "group" >
< a class = "btn btn-success" onclick = "$.operate.add Full ()" shiro:hasPermission = "system:repo:add" >
< a class = "btn btn-success" onclick = "$.operate.add ()" shiro:hasPermission = "system:repo:add" >
< i class = "fa fa-plus" > < / i > 新增
< / a >
< a class = "btn btn-primary single disabled" onclick = "$.operate.edit Full ()" shiro:hasPermission = "system:repo:edit" >
< a class = "btn btn-primary single disabled" onclick = "$.operate.edit ()" shiro:hasPermission = "system:repo:edit" >
< i class = "fa fa-edit" > < / i > 修改
< / a >
< a class = "btn btn-danger multiple disabled" onclick = "$.operate.removeAll()" shiro:hasPermission = "system:repo:remove" >
@ -81,7 +81,7 @@
align: 'center',
formatter: function(value, row, index) {
var actions = [];
actions.push('< a class = "btn btn-success btn-xs ' + editFlag + '" href = "javascript:void(0)" onclick = "$.operate.edit Full (\'' + row.id + '\')"> < i class = "fa fa-edit" > < / i > 编辑< / a > ');
actions.push('< a class = "btn btn-success btn-xs ' + editFlag + '" href = "javascript:void(0)" onclick = "$.operate.edit (\'' + row.id + '\')"> < i class = "fa fa-edit" > < / i > 编辑< / a > ');
actions.push('< a class = "btn btn-danger btn-xs ' + removeFlag + '" href = "javascript:void(0)" onclick = "$.operate.remove(\'' + row.id + '\')" > < i class = "fa fa-remove" > < / i > 删除< / a > ');
return actions.join('');
}