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

META-INF.resources.modules.sys.roleinfo.ctrl.roleinfo.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 Page = require('core/page');
	var Utils = require('core/utils');

	// 机构添加用户
	var UserInfoRoleAdd = Page.extend(function() {
	  this.renderButton = function() {
	    return 'F' !== this.parent.data.roleType;
    };

    this.initUserCombobox = function (input) {
      input
        .attr('target', 'user')
        .combobox({
          target: 'user'
        });
    };

		// @override
		this.object = {
			isPrimary: 'T',
			obtainDate:Utils.formateDate(new Date(),'yyyy-MM-dd')
		};

		// @override
		this.load = function(panel) {

      this.$findUp('initUserCombobox')($('input[name="userCode[]"]', panel));

			this.refresh=false;
			// 获取父窗口的角色信息
			var roleinfo = this.parent.data;

			var data = this.data = $.extend({}, this.object, {
				roleCode: roleinfo.roleCode,
				roleName: roleinfo.roleName
			});

			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