修改BUG:用户维护页面登录用户名可编辑
This commit is contained in:
parent
7ac460befe
commit
0abe977f45
|
@ -81,13 +81,15 @@
|
||||||
var op = {
|
var op = {
|
||||||
dataEntity: $.extend({}, this.options.dataEntity),
|
dataEntity: $.extend({}, this.options.dataEntity),
|
||||||
table: this.options.bootstrapTable,
|
table: this.options.bootstrapTable,
|
||||||
modal: this.options.modal
|
modal: this.options.modal,
|
||||||
|
src: this
|
||||||
};
|
};
|
||||||
return {
|
return {
|
||||||
'click .edit': function (e, value, row, index) {
|
'click .edit': function (e, value, row, index) {
|
||||||
op.dataEntity.load(row);
|
op.dataEntity.load(row);
|
||||||
$(op.table).bootstrapTable('uncheckAll');
|
$(op.table).bootstrapTable('uncheckAll');
|
||||||
$(op.table).bootstrapTable('check', index);
|
$(op.table).bootstrapTable('check', index);
|
||||||
|
handlerCallback.call(op.src, null, e, { oper: 'edit' });
|
||||||
$('#' + op.modal).modal("show");
|
$('#' + op.modal).modal("show");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -74,6 +74,12 @@
|
||||||
if (data && data.success && data.oper === 'save' && data.data.ID === $('#userId').val()) {
|
if (data && data.success && data.oper === 'save' && data.data.ID === $('#userId').val()) {
|
||||||
$('#userDisplayName').text(data.data.DisplayName);
|
$('#userDisplayName').text(data.data.DisplayName);
|
||||||
}
|
}
|
||||||
|
if (data && data.oper === 'create') {
|
||||||
|
$('#userName').removeProp('readonly').removeClass("ignore");
|
||||||
|
}
|
||||||
|
else if (data && data.oper === 'edit') {
|
||||||
|
$('#userName').prop('readonly', true).addClass("ignore");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue