
META-INF.resources.modules.sys.userinfo.ctrl.userinfo.add.js Maven / Gradle / Ivy
The newest version!
define(function (require) {
var Config = require('config');
var Core = require('core/core');
var Page = require('core/page');
// 编辑角色信息
var UserInfoAdd = Page.extend(function () {
var vm = this;
// @override
this.object = {
isValid: 'T'
};
// @override
this.load = function (panel) {
var form = panel.find('form');
this.data = $.extend({}, this.object);
form.form('disableValidation').form('load', this.data)
.form('focus');
};
// @override
this.submit = function (panel, data, closeCallback) {
var form = panel.find('form');
// 开启校验
var isValid = form.form('enableValidation').form('validate');
if (isValid) {
form.form('ajax', {
url: Config.ContextPath + 'system/userinfo',
method: 'post',
data: data
}).then(function () {
return require('loaders/cache/loader.system').loadAll()
}).then(function () {
vm.parent.clearPanel();
closeCallback(true)
});
}
return false;
};
// @override
this.onClose = function (table, submited) {
if (submited) {
table.datagrid('reload');
}
};
});
return UserInfoAdd;
});
© 2015 - 2025 Weber Informatics LLC | Privacy Policy