170 lines
6.8 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.03.22
* 描 述:数据字典管理
*/
var refreshGird;
var bootstrap = function ($, learun) {
"use strict";
var classify_itemCode = '';
var page = {
init: function () {
page.initTree();
page.initGrid();
page.bind();
},
bind: function () {
// 查询
$('#btn_Search').on('click', function () {
var keyword = $('#txt_Keyword').val();
page.search({ keyword: keyword });
});
// 刷新
$('#lr_refresh').on('click', function () {
location.reload();
});
// 新增
$('#lr_add').on('click', function () {
if (!classify_itemCode) {
learun.alert.warning('请选择字典分类!');
return false;
}
top.selectedDataItemRow = null;
var parentId = $('#gridtable').jfGridValue('F_ItemDetailId') || '0';
learun.layerForm({
id: 'form',
title: '添加字典',
url: top.$.rootUrl + '/LR_SystemModule/DataItem/Form?parentId=' + parentId + '&itemCode=' + classify_itemCode,
width: 500,
height: 370,
callBack: function (id) {
return top[id].acceptClick(refreshGird);
}
});
});
// 编辑
$('#lr_edit').on('click', function () {
var keyValue = $('#gridtable').jfGridValue('F_ItemDetailId');
top.selectedDataItemRow = $('#gridtable').jfGridGet('rowdata');
if (learun.checkrow(keyValue)) {
learun.layerForm({
id: 'form',
title: '编辑字典',
url: top.$.rootUrl + '/LR_SystemModule/DataItem/Form?itemCode=' + classify_itemCode,
width: 500,
height: 370,
callBack: function (id) {
return top[id].acceptClick(refreshGird);
}
});
}
});
// 删除
$('#lr_delete').on('click', function () {
var keyValue = $('#gridtable').jfGridValue('F_ItemDetailId');
if (learun.checkrow(keyValue)) {
learun.layerConfirm('是否确认删除该项!', function (res) {
if (res) {
learun.deleteForm(top.$.rootUrl + '/LR_SystemModule/DataItem/DeleteDetailForm', { keyValue: keyValue }, function () {
//更新缓存
var storage = {
get: function (name) {
if (localStorage) {
return JSON.parse(localStorage.getItem(name)) || {};
}
},
set: function (name, data) {
if (localStorage) {
localStorage.setItem(name, JSON.stringify(data));
}
}
};
var ver = storage.get("dataItemData").ver || "";
learun.httpAsync('GET', top.$.rootUrl + '/LR_SystemModule/DataItem/GetMap', { ver: ver }, function (data) {
console.log(data);
if (!data) {
} else {
if (data.ver) {
storage.set("dataItemData", data);
}
}
});
refreshGird();
});
}
});
}
});
/*分类管理*/
$('#lr_category').on('click', function () {
learun.layerForm({
id: 'ClassifyIndex',
title: '分类管理',
url: top.$.rootUrl + '/LR_SystemModule/DataItem/ClassifyIndex',
width: 800,
height: 500,
maxmin: true,
btn: null,
end: function () {
location.reload();
}
});
});
},
initTree: function () {
$('#lr_left_tree').lrtree({
url: top.$.rootUrl + '/LR_SystemModule/DataItem/GetClassifyTree',
nodeClick: function (item) {
classify_itemCode = item.value;
$('#titleinfo').text(item.text + '(' + classify_itemCode + ')');
page.search();
}
});
},
initGrid: function () {
$('#gridtable').jfGrid({
url: top.$.rootUrl + '/LR_SystemModule/DataItem/GetDetailList',
headData: [
{ label: '项目名', name: 'F_ItemName', width: 200, align: 'left' },
{ label: '项目名(英文)', name: 'F_ItemNameEN', width: 200, align: 'left' },
{ label: '项目值', name: 'F_ItemValue', width: 200, align: 'left' },
{ label: '简拼', name: 'F_SimpleSpelling', width: 150, align: 'left' },
{ label: '排序', name: 'F_SortCode', width: 80, align: 'center' },
{
label: "有效", name: "F_EnabledMark", width: 50, align: "center",
formatter: function (cellvalue) {
return cellvalue == 1 ? "<i class=\"fa fa-toggle-on\"></i>" : "<i class=\"fa fa-toggle-off\"></i>";
}
},
{ label: "备注", name: "F_Description", width: 300, align: "left" },
{ name: "" }
],
isTree: true,
mainId: 'F_ItemDetailId',
parentId: 'F_ParentId',
});
},
search: function (param) {
param = param || {};
param.itemCode = classify_itemCode;
$('#gridtable').jfGridSet('reload', param);
}
};
refreshGird = function () {
page.search();
};
page.init();
}