|
@@ -28,20 +28,20 @@
|
28
|
28
|
<div class="col-xs-12">
|
29
|
29
|
<div class="box">
|
30
|
30
|
<div class="box-header">
|
31
|
|
- <h3 class="box-title">执行器列表</h3>
|
32
|
|
- <button class="btn btn-info btn-xs pull-left2 add" >+新增执行器</button>
|
|
31
|
+ <h3 class="box-title">${I18n.jobgroup_list}</h3>
|
|
32
|
+ <button class="btn btn-info btn-xs pull-left2 add" >${I18n.jobgroup_add}</button>
|
33
|
33
|
</div>
|
34
|
34
|
<div class="box-body">
|
35
|
35
|
<table id="joblog_list" class="table table-bordered table-striped display" width="100%" >
|
36
|
36
|
<thead>
|
37
|
37
|
<tr>
|
38
|
38
|
<#--<th name="id" >ID</th>-->
|
39
|
|
- <th name="order" >排序</th>
|
|
39
|
+ <th name="order" >${I18n.jobgroup_field_order}</th>
|
40
|
40
|
<th name="appName" >AppName</th>
|
41
|
|
- <th name="title" >名称</th>
|
42
|
|
- <th name="addressType" >注册方式</th>
|
43
|
|
- <th name="registryList" >OnLine 机器</th>
|
44
|
|
- <th name="operate" >操作</th>
|
|
41
|
+ <th name="title" >${I18n.jobgroup_field_title}</th>
|
|
42
|
+ <th name="addressType" >${I18n.jobgroup_field_addressType}</th>
|
|
43
|
+ <th name="registryList" >OnLine ${I18n.jobgroup_field_registryList}</th>
|
|
44
|
+ <th name="operate" >${I18n.system_opt}</th>
|
45
|
45
|
</tr>
|
46
|
46
|
</thead>
|
47
|
47
|
<tbody>
|
|
@@ -52,7 +52,7 @@
|
52
|
52
|
<td>${group.order}</td>
|
53
|
53
|
<td>${group.appName}</td>
|
54
|
54
|
<td>${group.title}</td>
|
55
|
|
- <td><#if group.addressType==0>自动注册<#else>手动录入</#if></td>
|
|
55
|
+ <td><#if group.addressType==0>${I18n.jobgroup_field_addressType_0}<#else>${I18n.jobgroup_field_addressType_1}</#if></td>
|
56
|
56
|
<td>
|
57
|
57
|
<#if group.registryList?exists>
|
58
|
58
|
<#list group.registryList as item>
|
|
@@ -74,8 +74,8 @@
|
74
|
74
|
title="${group.title}"
|
75
|
75
|
order="${group.order}"
|
76
|
76
|
addressType="${group.addressType}"
|
77
|
|
- addressList="${group.addressList}" >编辑</button>
|
78
|
|
- <button class="btn btn-danger btn-xs remove" id="${group.id}" >删除</button>
|
|
77
|
+ addressList="${group.addressList}" >${I18n.system_opt_edit}</button>
|
|
78
|
+ <button class="btn btn-danger btn-xs remove" id="${group.id}" >${I18n.system_opt_del}</button>
|
79
|
79
|
</td>
|
80
|
80
|
</tr>
|
81
|
81
|
</#list>
|
|
@@ -94,41 +94,41 @@
|
94
|
94
|
<div class="modal-dialog ">
|
95
|
95
|
<div class="modal-content">
|
96
|
96
|
<div class="modal-header">
|
97
|
|
- <h4 class="modal-title" >新增执行器</h4>
|
|
97
|
+ <h4 class="modal-title" >${I18n.jobgroup_add}</h4>
|
98
|
98
|
</div>
|
99
|
99
|
<div class="modal-body">
|
100
|
100
|
<form class="form-horizontal form" role="form" >
|
101
|
101
|
<div class="form-group">
|
102
|
102
|
<label for="lastname" class="col-sm-2 control-label">AppName<font color="red">*</font></label>
|
103
|
|
- <div class="col-sm-10"><input type="text" class="form-control" name="appName" placeholder="请输入“AppName”" maxlength="64" ></div>
|
|
103
|
+ <div class="col-sm-10"><input type="text" class="form-control" name="appName" placeholder="${I18n.system_please_input}AppName" maxlength="64" ></div>
|
104
|
104
|
</div>
|
105
|
105
|
<div class="form-group">
|
106
|
|
- <label for="lastname" class="col-sm-2 control-label">名称<font color="red">*</font></label>
|
107
|
|
- <div class="col-sm-10"><input type="text" class="form-control" name="title" placeholder="请输入“名称”" maxlength="12" ></div>
|
|
106
|
+ <label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_title}<font color="red">*</font></label>
|
|
107
|
+ <div class="col-sm-10"><input type="text" class="form-control" name="title" placeholder="${I18n.system_please_input}${I18n.jobgroup_field_title}" maxlength="12" ></div>
|
108
|
108
|
</div>
|
109
|
109
|
<div class="form-group">
|
110
|
|
- <label for="lastname" class="col-sm-2 control-label">排序<font color="red">*</font></label>
|
111
|
|
- <div class="col-sm-10"><input type="text" class="form-control" name="order" placeholder="请输入“排序”" maxlength="50" ></div>
|
|
110
|
+ <label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_order}<font color="red">*</font></label>
|
|
111
|
+ <div class="col-sm-10"><input type="text" class="form-control" name="order" placeholder="${I18n.system_please_input}${I18n.jobgroup_field_order}" maxlength="50" ></div>
|
112
|
112
|
</div>
|
113
|
113
|
<div class="form-group">
|
114
|
|
- <label for="lastname" class="col-sm-2 control-label">注册方式<font color="red">*</font></label>
|
|
114
|
+ <label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_addressType}<font color="red">*</font></label>
|
115
|
115
|
<div class="col-sm-10">
|
116
|
|
- <input type="radio" name="addressType" value="0" checked />自动注册
|
|
116
|
+ <input type="radio" name="addressType" value="0" checked />${I18n.jobgroup_field_addressType_0}
|
117
|
117
|
|
118
|
|
- <input type="radio" name="addressType" value="1" />手动录入
|
|
118
|
+ <input type="radio" name="addressType" value="1" />${I18n.jobgroup_field_addressType_1}
|
119
|
119
|
</div>
|
120
|
120
|
</div>
|
121
|
121
|
<div class="form-group">
|
122
|
|
- <label for="lastname" class="col-sm-2 control-label">机器地址<font color="red">*</font></label>
|
|
122
|
+ <label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_registryList}<font color="red">*</font></label>
|
123
|
123
|
<div class="col-sm-10">
|
124
|
|
- <textarea class="textarea" name="addressList" maxlength="512" placeholder="请输入执行器地址列表,多地址逗号分隔" readonly="readonly" style="background-color:#eee; width: 100%; height: 100px; font-size: 14px; line-height: 10px; border: 1px solid #dddddd; padding: 10px;"></textarea>
|
|
124
|
+ <textarea class="textarea" name="addressList" maxlength="512" placeholder="${I18n.jobgroup_field_registryList_placeholder}" readonly="readonly" style="background-color:#eee; width: 100%; height: 100px; font-size: 14px; line-height: 10px; border: 1px solid #dddddd; padding: 10px;"></textarea>
|
125
|
125
|
</div>
|
126
|
126
|
</div>
|
127
|
127
|
<hr>
|
128
|
128
|
<div class="form-group">
|
129
|
129
|
<div class="col-sm-offset-3 col-sm-6">
|
130
|
|
- <button type="submit" class="btn btn-primary" >保存</button>
|
131
|
|
- <button type="button" class="btn btn-default" data-dismiss="modal">取消</button>
|
|
130
|
+ <button type="submit" class="btn btn-primary" >${I18n.system_save}</button>
|
|
131
|
+ <button type="button" class="btn btn-default" data-dismiss="modal">${I18n.system_cancel}</button>
|
132
|
132
|
</div>
|
133
|
133
|
</div>
|
134
|
134
|
</form>
|
|
@@ -142,41 +142,41 @@
|
142
|
142
|
<div class="modal-dialog ">
|
143
|
143
|
<div class="modal-content">
|
144
|
144
|
<div class="modal-header">
|
145
|
|
- <h4 class="modal-title" >编辑执行器</h4>
|
|
145
|
+ <h4 class="modal-title" >${I18n.jobgroup_edit}</h4>
|
146
|
146
|
</div>
|
147
|
147
|
<div class="modal-body">
|
148
|
148
|
<form class="form-horizontal form" role="form" >
|
149
|
149
|
<div class="form-group">
|
150
|
150
|
<label for="lastname" class="col-sm-2 control-label">AppName<font color="red">*</font></label>
|
151
|
|
- <div class="col-sm-10"><input type="text" class="form-control" name="appName" placeholder="请输入“AppName”" maxlength="64" ></div>
|
|
151
|
+ <div class="col-sm-10"><input type="text" class="form-control" name="appName" placeholder="${I18n.system_please_input}AppName" maxlength="64" ></div>
|
152
|
152
|
</div>
|
153
|
153
|
<div class="form-group">
|
154
|
|
- <label for="lastname" class="col-sm-2 control-label">名称<font color="red">*</font></label>
|
155
|
|
- <div class="col-sm-10"><input type="text" class="form-control" name="title" placeholder="请输入“名称”" maxlength="12" ></div>
|
|
154
|
+ <label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_title}<font color="red">*</font></label>
|
|
155
|
+ <div class="col-sm-10"><input type="text" class="form-control" name="title" placeholder="${I18n.system_please_input}${I18n.jobgroup_field_title}" maxlength="12" ></div>
|
156
|
156
|
</div>
|
157
|
157
|
<div class="form-group">
|
158
|
|
- <label for="lastname" class="col-sm-2 control-label">排序<font color="red">*</font></label>
|
159
|
|
- <div class="col-sm-10"><input type="text" class="form-control" name="order" placeholder="请输入“排序”" maxlength="50" ></div>
|
|
158
|
+ <label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_order}<font color="red">*</font></label>
|
|
159
|
+ <div class="col-sm-10"><input type="text" class="form-control" name="order" placeholder="${I18n.system_please_input}${I18n.jobgroup_field_order}" maxlength="50" ></div>
|
160
|
160
|
</div>
|
161
|
161
|
<div class="form-group">
|
162
|
|
- <label for="lastname" class="col-sm-2 control-label">注册方式<font color="red">*</font></label>
|
|
162
|
+ <label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_addressType}<font color="red">*</font></label>
|
163
|
163
|
<div class="col-sm-10">
|
164
|
|
- <input type="radio" name="addressType" value="0" />自动注册
|
|
164
|
+ <input type="radio" name="addressType" value="0" />${I18n.jobgroup_field_addressType_0}
|
165
|
165
|
|
166
|
|
- <input type="radio" name="addressType" value="1" />手动录入
|
|
166
|
+ <input type="radio" name="addressType" value="1" />${I18n.jobgroup_field_addressType_1}
|
167
|
167
|
</div>
|
168
|
168
|
</div>
|
169
|
169
|
<div class="form-group">
|
170
|
|
- <label for="lastname" class="col-sm-2 control-label">机器地址<font color="red">*</font></label>
|
|
170
|
+ <label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_registryList}<font color="red">*</font></label>
|
171
|
171
|
<div class="col-sm-10">
|
172
|
|
- <textarea class="textarea" name="addressList" maxlength="512" placeholder="请输入执行器地址列表,多地址逗号分隔" readonly="readonly" style="background-color:#eee; width: 100%; height: 100px; font-size: 14px; line-height: 10px; border: 1px solid #dddddd; padding: 10px;"></textarea>
|
|
172
|
+ <textarea class="textarea" name="addressList" maxlength="512" placeholder="${I18n.jobgroup_field_registryList_placeholder}" readonly="readonly" style="background-color:#eee; width: 100%; height: 100px; font-size: 14px; line-height: 10px; border: 1px solid #dddddd; padding: 10px;"></textarea>
|
173
|
173
|
</div>
|
174
|
174
|
</div>
|
175
|
175
|
<hr>
|
176
|
176
|
<div class="form-group">
|
177
|
177
|
<div class="col-sm-offset-3 col-sm-6">
|
178
|
|
- <button type="submit" class="btn btn-primary" >保存</button>
|
179
|
|
- <button type="button" class="btn btn-default" data-dismiss="modal">取消</button>
|
|
178
|
+ <button type="submit" class="btn btn-primary" >${I18n.system_save}</button>
|
|
179
|
+ <button type="button" class="btn btn-default" data-dismiss="modal">${I18n.system_cancel}</button>
|
180
|
180
|
<input type="hidden" name="id" >
|
181
|
181
|
</div>
|
182
|
182
|
</div>
|