update ruoyi-admin/src/main/resources/templates/system/user/user.html.

支持字符串user_id,避免字符串ID时,程序会产生异常
This commit is contained in:
无名丶小辈 2021-02-05 09:23:28 +08:00 committed by Gitee
parent 930308a16f
commit 6ab8ce2796
1 changed files with 6 additions and 4 deletions

View File

@ -175,8 +175,8 @@
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.editTab(\'' + row.userId + '\')"><i class="fa fa-edit"></i>编辑</a> '); actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.editTab(\'' + row.userId + '\')"><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.userId + '\')"><i class="fa fa-remove"></i>删除</a> '); actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.userId + '\')"><i class="fa fa-remove"></i>删除</a> ');
var more = []; var more = [];
more.push("<a class='btn btn-default btn-xs " + resetPwdFlag + "' href='javascript:void(0)' onclick='resetPwd(" + row.userId + ")'><i class='fa fa-key'></i>重置密码</a> "); more.push("<a class='btn btn-default btn-xs " + resetPwdFlag + "' href='javascript:void(0)' dataid='"+row.userId+"' onclick='resetPwd(this)'><i class='fa fa-key'></i>重置密码</a> ");
more.push("<a class='btn btn-default btn-xs " + editFlag + "' href='javascript:void(0)' onclick='authRole(" + row.userId + ")'><i class='fa fa-check-square-o'></i>分配角色</a>"); more.push("<a class='btn btn-default btn-xs " + editFlag + "' href='javascript:void(0)' dataid='"+row.userId+"' onclick='authRole(this)'><i class='fa fa-check-square-o'></i>分配角色</a>");
actions.push('<a tabindex="0" class="btn btn-info btn-xs" role="button" data-container="body" data-placement="left" data-toggle="popover" data-html="true" data-trigger="hover" data-content="' + more.join('') + '"><i class="fa fa-chevron-circle-right"></i>更多操作</a>'); actions.push('<a tabindex="0" class="btn btn-info btn-xs" role="button" data-container="body" data-placement="left" data-toggle="popover" data-html="true" data-trigger="hover" data-content="' + more.join('') + '"><i class="fa fa-chevron-circle-right"></i>更多操作</a>');
return actions.join(''); return actions.join('');
} }
@ -225,13 +225,15 @@
} }
/* 用户管理-重置密码 */ /* 用户管理-重置密码 */
function resetPwd(userId) { function resetPwd(obj) {
var userId = $(obj).attr("dataid");
var url = prefix + '/resetPwd/' + userId; var url = prefix + '/resetPwd/' + userId;
$.modal.open("重置密码", url, '800', '300'); $.modal.open("重置密码", url, '800', '300');
} }
/* 用户管理-分配角色 */ /* 用户管理-分配角色 */
function authRole(userId) { function authRole(obj) {
var userId = $(obj).attr("dataid");
var url = prefix + '/authRole/' + userId; var url = prefix + '/authRole/' + userId;
$.modal.openTab("用户分配角色", url); $.modal.openTab("用户分配角色", url);
} }