74 lines
2.4 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-12-12 11:52
* 描 述:消息策略
*/
var refreshGirdData;
var acceptClick;
var bootstrap = function ($, learun) {
"use strict";
var selectedRow;
var page = {
init: function () {
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();
});
},
initGrid: function () {
$('#gridtable').jfGrid({
url: top.$.rootUrl + '/LR_SystemModule/DbField/GetList',
headData: [
{ label: '列名', name: 'F_Name', width: 160, align: "left" },
{ label: '描述', name: 'F_Remark', width: 160, align: "left" },
{
label: '数据类型', name: 'F_DataType', width: 80, align: "center",
formatterAsync: function (callback, value, row) {
learun.clientdata.getAsync('dataItem', {
key: value,
code: 'DbFieldType',
callback: function (_data) {
callback(_data.text);
}
});
}
},
{ label: '字段长度', name: 'F_Length', width: 80, align: "center" },
],
mainId: 'F_Id',
reloadSelected: true,
isMultiselect: true
});
page.search();
},
search: function (param) {
param = param || {};
$('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) });
}
};
refreshGirdData = function () {
$('#gridtable').jfGridSet('reload');
};
page.init();
acceptClick = function (callBack) {
var selectedRow = $('#gridtable').jfGridGet('rowdata');
callBack(selectedRow);
return true;
};
}