|
|
@@ -139,7 +139,18 @@ var bootstrap = function ($, learun) { |
|
|
|
$('#gridtable').lrAuthorizeJfGrid({ |
|
|
|
url: top.$.rootUrl + '/EducationalAdministration/Dispatch/GetPageList', |
|
|
|
headData: [ |
|
|
|
{ label: "标题", name: "DisTitle", width: 250, align: "center" }, |
|
|
|
{ |
|
|
|
label: "标题", name: "DisTitle", width: 250, align: "center", |
|
|
|
formatterAsync: function (callback, value, row, op, $cell) { |
|
|
|
learun.clientdata.getAsync('dataItem', { |
|
|
|
key: value, |
|
|
|
code: 'Dispatch', |
|
|
|
callback: function (_data) { |
|
|
|
callback(_data.text); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|
{ label: "来文单位", name: "DisFrom", width: 200, align: "center" }, |
|
|
|
{ label: "字", name: "DisWork", width: 80, align: "center" }, |
|
|
|
{ label: "号", name: "DisMark", width: 80, align: "center" }, |
|
|
@@ -150,7 +161,18 @@ var bootstrap = function ($, learun) { |
|
|
|
{ label: "事由", name: "Reasons", width: 150, align: "center" }, |
|
|
|
{ label: "呈送意见", name: "Render", width: 200, align: "center" }, |
|
|
|
{ label: "呈送时间", name: "RenderDate", width: 100, align: "center" }, |
|
|
|
{ label: "收文单位", name: "DisOffice", width: 200, align: "center" }, |
|
|
|
{ |
|
|
|
label: "收文单位", name: "DisOffice", width: 200, align: "center", |
|
|
|
formatterAsync: function (callback, value, row, op, $cell) { |
|
|
|
learun.clientdata.getAsync('dataItem', { |
|
|
|
key: value, |
|
|
|
code: 'DisOffice', |
|
|
|
callback: function (_data) { |
|
|
|
callback(_data.text); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: "审批状态", name: "FlowNo", width: 100, align: "center", |
|
|
|
formatter: function (cellvalue, row) { |
|
|
|