feat:用户角色分配修改

new-exam
wangxy 5 months ago
parent 65034371b2
commit 2b02d0750f

@ -718,6 +718,18 @@ var table = {
});
return checkeds;
},
// 获取选中单选框项
radioCheckeds: function(name) {
var radios = "";
$('input:radio[name="' + name + '"]:checked').each(function(i) {
if (0 == i) {
radios = $(this).val();
} else {
radios += ("," + $(this).val());
}
});
return radios;
},
// 获取选中下拉框项
selectSelects: function(name) {
var selects = "";

@ -92,7 +92,7 @@
<label class="col-sm-4 control-label is-required">角色:</label>
<div class="col-sm-8">
<label th:each="role:${roles}" class="check-box">
<input name="role" type="checkbox" th:value="${role.roleId}" th:text="${role.roleName}" th:disabled="${role.status == '1'}" >
<input name="role" type="radio" th:value="${role.roleId}" th:text="${role.roleName}" th:disabled="${role.status == '1'}">
</label>
</div>
</div>
@ -363,7 +363,7 @@
if ($.validate.form() && checkpwd(chrtype, password)) {
var data = $("#form-user-add").serializeArray();
var status = $("input[id='status']").is(':checked') == true ? 0 : 1;
var roleIds = $.form.selectCheckeds("role");
var roleIds = $.form.radioCheckeds("role");
var postIds = $.form.selectSelects("post");
data.push({"name": "status", "value": status});
data.push({"name": "roleIds", "value": roleIds});

@ -61,7 +61,7 @@
clickToSelect: true,
maintainSelected: true,
columns: [{
checkbox: true,
radio: true,
formatter:function (value, row, index) {
if($.common.isEmpty(value)) {
return { checked: row.flag };

@ -81,7 +81,8 @@
<label class="col-sm-4 control-label is-required">角色:</label>
<div class="col-sm-8">
<label th:each="role:${roles}" required class="check-box">
<input name="role" type="checkbox" th:value="${role.roleId}" th:text="${role.roleName}" th:checked="${role.flag}" th:disabled="${role.status == '1'}">
<input name="role" type="radio" th:value="${role.roleId}" th:text="${role.roleName}" th:checked="${role.flag}" th:disabled="${role.status == '1'}">
</label>
</div>
</div>
@ -308,7 +309,7 @@
if ($.validate.form()) {
var data = $("#form-user-edit").serializeArray();
/*var status = $("input[id='status']").is(':checked') == true ? 0 : 1;*/
var roleIds = $.form.selectCheckeds("role");
var roleIds = $.form.radioCheckeds("role");
var postIds = $.form.selectSelects("post");
/*data.push({"name": "status", "value": status});*/
data.push({"name": "roleIds", "value": roleIds});

Loading…
Cancel
Save