All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.modules.sys.userinfo.ctrl.userinfo.role.add.js Maven / Gradle / Ivy

There is a newer version: 5.0.2101
Show newest version
define(function(require) {
	var Config = require('config');
//	var Core = require('core/core');
	
	var Page = require('core/page');
	var Utils = require('core/utils');
	
	// 机构添加用户
	var UserInfoRoleAdd = Page.extend(function() {
		// @override
		this.object = {
			isPrimary: 'T',
			obtainDate:Utils.formateDate(new Date(),'yyyy-MM-dd')
		};
		
		// @override
		this.load = function(panel) {
			this.refresh=false;
			// 获取父窗口的用户信息
			var userinfo = this.parent.data;
			
			var data = this.data = $.extend({}, this.object, {
				userCode: userinfo.userCode,
				userName: userinfo.userName
			});
			
			panel.find('form').form('disableValidation')
				.form('load', data)
				.form('focus');
		};
		
		// @override
		this.submit = function(panel, data, closeCallback) {
			var form = panel.find('form');
			var _self=this;			
			form.form('enableValidation');
			var isValid = form.form('validate');
			
			if (isValid) {
				form.form('ajax', {
					url: Config.ContextPath+'system/userrole',
					data: data
				}).then(function(){
					return require('loaders/cache/loader.system').loadAll();
				}).then(function(){
					_self.refresh=true;
					closeCallback();
				});
				
			}
			
			return false;
		};
		
		// @override
		this.onClose = function(table) {
			if(this.refresh)
			table.datagrid('reload');
		};
		
	});
	
	return UserInfoRoleAdd;
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy