62 lines
1.9 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 版 本 PIT-ADMS V7.0.3 敏捷开发框架
* Copyright (c) 2013-2018 Hexagon PPM
* 创建人:研发部
* 日 期2017.04.11
* 描 述:即时通讯用户管理
*/
var keyValue = request('keyValue');
var acceptClick;
var bootstrap = function ($, learun) {
"use strict";
var page = {
init: function () {
// 验证编码是否重复
$('#F_Code').on('blur', function () {
$.lrExistField(keyValue, 'F_Code', top.$.rootUrl + '/LR_IM/SysUser/ExistCode');
});
// 选择图标
$('#selectIcon').on('click', function () {
learun.layerForm({
id: 'iconForm',
title: '选择图标',
url: top.$.rootUrl + '/Utility/Icon',
height: 700,
width: 1000,
btn: null,
maxmin: true,
end: function () {
if (top._learunSelectIcon != '') {
$('#F_Icon').val(top._learunSelectIcon);
}
}
});
});
page.initData();
},
initData: function () {
if (!!keyValue) {
learun.httpAsync('GET', top.$.rootUrl + '/LR_IM/SysUser/GetFormData', { keyValue: keyValue }, function (data) {
$('#form').lrSetFormData(data);
});
}
}
};
// 保存数据
acceptClick = function (callBack) {
if (!$('#form').lrValidform()) {
return false;
}
var postData = $('#form').lrGetFormData(keyValue);
$.lrSaveForm(top.$.rootUrl + '/LR_IM/SysUser/SaveForm?keyValue=' + keyValue, postData, function (res) {
// 保存成功后才回调
if (!!callBack) {
callBack();
}
});
};
page.init();
}