/* * 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园(http://www.learun.cn)
* Copyright (c) 2013-2018 北京泉江科技有限公司
* 创建人:超级管理员
* 日 期:2020-03-30 14:11
* 描 述:工作简历
*/
var refreshGirdData;
var empId = request('empId');
var status = false;
var bootstrap = function ($, learun) {
"use strict";
var page = {
init: function () {
page.refreshStatus();
page.initGird();
page.bind();
},
refreshStatus: function () {
//获取主表状态
learun.httpAsyncGet(top.$.rootUrl + '/EducationalAdministration/EmpInfo/GetFormData?keyValue=' + empId, function (res) {
if (res.code == 200) {
if (res.data.EmpInfo != null) {
status = res.data.EmpInfo.ResumeStatus;
}
}
});
},
bind: function () {
// 刷新
$('#lr_refresh').on('click', function () {
location.reload();
});
// 新增
$('#lr_add').on('click', function () {
if (status == 'true') {
learun.alert.warning('已提交,不能再修改!');
return;
}
learun.layerForm({
id: 'formInPM_Resume',
title: '新增',
url: top.$.rootUrl + '/EducationalAdministration/PM_Resume/Form?empId=' + empId,
width: 600,
height: 400,
callBack: function (id) {
return top[id].acceptClick(refreshGirdData);
}
});
});
// 编辑
$('#lr_edit').on('click', function () {
if (status == 'true') {
learun.alert.warning('已提交,不能再修改!');
return;
}
var keyValue = $('#gridtable').jfGridValue('ID');
if (learun.checkrow(keyValue)) {
learun.layerForm({
id: 'formInPM_Resume',
title: '编辑',
url: top.$.rootUrl + '/EducationalAdministration/PM_Resume/Form?keyValue=' + keyValue + '&empId=' + empId,
width: 600,
height: 400,
callBack: function (id) {
return top[id].acceptClick(refreshGirdData);
}
});
}
});
// 删除
$('#lr_delete').on('click', function () {
if (status == 'true') {
learun.alert.warning('已提交,不能再修改!');
return;
}
var keyValue = $('#gridtable').jfGridValue('ID');
if (learun.checkrow(keyValue)) {
learun.layerConfirm('是否确认删除该项!', function (res) {
if (res) {
learun.deleteForm(top.$.rootUrl + '/EducationalAdministration/PM_Resume/DeleteForm', { keyValue: keyValue }, function () {
refreshGirdData();
});
}
});
}
});
// 提交
$('#lr_check').on('click', function () {
if (status == 'true') {
learun.alert.warning('已提交,不能再修改!');
return;
}
learun.layerConfirm('是否确认提交!', function (res) {
if (res) {
learun.postForm( top.$.rootUrl + '/EducationalAdministration/PM_Resume/Submit', { empId: empId, status: true }, function (info) {
refreshGirdData();
});
}
});
});
// 取消提交
$('#lr_uncheck').on('click', function () {
learun.layerConfirm('是否取消提交!', function (res) {
if (res) {
learun.postForm( top.$.rootUrl + '/EducationalAdministration/PM_Resume/Submit', { empId: empId, status: false }, function () {
refreshGirdData();
});
}
});
});
},
// 初始化列表
initGird: function () {
$('#gridtable').lrAuthorizeJfGrid({
url: top.$.rootUrl + '/EducationalAdministration/PM_Resume/GetPageList',
headData: [
{ label: "时间", name: "RTime", width: 130, align: "left" },
{ label: "工作单位", name: "UnitName", width: 100, align: "left" },
{ label: "证明人", name: "Witness", width: 100, align: "left" },
{ label: "部门", name: "DepartmentID", width: 100, align: "left" },
{ label: "岗位", name: "PostID", width: 100, align: "left" },
{ label: "工作描述", name: "Describe", width: 100, align: "left" },
{
label: "提交状态", name: "SubmitStatus", width: 100, align: "left",
formatter: function (cellvalue) {
return cellvalue == true ? "" : "";
}
},
],
mainId: 'ID',
isPage: true
});
page.search();
},
search: function (param) {
param = param || {};
param.EmpId = empId;
$('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) });
}
};
refreshGirdData = function () {
page.search();
page.refreshStatus();
};
page.init();
}