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

META-INF.resources.modules.sys.deptpow.ctrl.deptpow.user.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 DeptPowUserAdd = Page.extend(function() {
		
		// @override
		this.object = {
			isPrimary: 'T'
		};
		
		// @override
		this.load = function(panel) {
			// 获取父窗口的机构信息
			var unitinfo = this.parent.data;
			
			var data = this.data = $.extend({}, this.object, {
				unitCode: unitinfo.unitCode,
				unitName: unitinfo.unitName
			});
			
			panel.find('form')
				.form('disableValidation')
				.form('load', data)
				.form('focus');
		};
		
		// @override
		this.submit = function(panel, data, closeCallback) {
			var form = panel.find('form');
			
			form.form('enableValidation');
			var isValid = form.form('validate');
			
			if (isValid) {
				form.form('ajax', {
					url: Config.ContextPath+'system/userunit',
					data: data
				}).then(closeCallback);
			}
			
			return false;
		};
		
		// @override
		this.onClose = function(table) {
			table.datagrid('reload');
		};
	});
	
	return DeptPowUserAdd;
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy