1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<!--
Author: huangtianyang
Date: 2019/01/21 11:17
Revision: 1.0
-->
<a:screen xmlns:a="http://www.leaf-framework.org/application" trace="true">
<a:init-procedure/>
<a:view>
<script><![CDATA[
function queryService() {
$('icbcHistoryDs').query();
}
]]></script>
<a:dataSets>
<a:dataSet id="icbcHistoryDs" model="icbc.icbc_jobs_history" autoQuery="true"/>
</a:dataSets>
<a:screenBody>
<a:screenTopToolbar>
<a:screenTitle>工行定时任务执行记录</a:screenTitle>
<a:gridButton text="查询" click="queryService"/>
</a:screenTopToolbar>
<a:grid bindTarget="icbcHistoryDs" marginWidth="20" marginHeight="40">
<a:columns>
<a:column name="status" prompt="状态" width="100"/>
<a:column name="error_msg" prompt="错误信息" width="500" editor="ruleCreateDs_grid_tf"/>
<a:column name="execution_date" prompt="执行时间" width="200"/>
</a:columns>
<a:editors>
<a:textField id="ruleCreateDs_grid_tf"/>
</a:editors>
</a:grid>
</a:screenBody>
</a:view>
</a:screen>