|
|
|
@ -28,20 +28,20 @@
|
|
|
|
|
<div class="col-xs-12">
|
|
|
|
|
<div class="box">
|
|
|
|
|
<div class="box-header">
|
|
|
|
|
<h3 class="box-title">执行器列表</h3>
|
|
|
|
|
<button class="btn btn-info btn-xs pull-left2 add" >+新增执行器</button>
|
|
|
|
|
<h3 class="box-title">${I18n.jobgroup_list}</h3>
|
|
|
|
|
<button class="btn btn-info btn-xs pull-left2 add" >${I18n.jobgroup_add}</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="box-body">
|
|
|
|
|
<table id="joblog_list" class="table table-bordered table-striped display" width="100%" >
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<#--<th name="id" >ID</th>-->
|
|
|
|
|
<th name="order" >排序</th>
|
|
|
|
|
<th name="order" >${I18n.jobgroup_field_order}</th>
|
|
|
|
|
<th name="appName" >AppName</th>
|
|
|
|
|
<th name="title" >名称</th>
|
|
|
|
|
<th name="addressType" >注册方式</th>
|
|
|
|
|
<th name="registryList" >OnLine 机器</th>
|
|
|
|
|
<th name="operate" >操作</th>
|
|
|
|
|
<th name="title" >${I18n.jobgroup_field_title}</th>
|
|
|
|
|
<th name="addressType" >${I18n.jobgroup_field_addressType}</th>
|
|
|
|
|
<th name="registryList" >OnLine ${I18n.jobgroup_field_registryList}</th>
|
|
|
|
|
<th name="operate" >${I18n.system_opt}</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
@ -52,7 +52,7 @@
|
|
|
|
|
<td>${group.order}</td>
|
|
|
|
|
<td>${group.appName}</td>
|
|
|
|
|
<td>${group.title}</td>
|
|
|
|
|
<td><#if group.addressType==0>自动注册<#else>手动录入</#if></td>
|
|
|
|
|
<td><#if group.addressType==0>${I18n.jobgroup_field_addressType_0}<#else>${I18n.jobgroup_field_addressType_1}</#if></td>
|
|
|
|
|
<td>
|
|
|
|
|
<#if group.registryList?exists>
|
|
|
|
|
<#list group.registryList as item>
|
|
|
|
@ -74,8 +74,8 @@
|
|
|
|
|
title="${group.title}"
|
|
|
|
|
order="${group.order}"
|
|
|
|
|
addressType="${group.addressType}"
|
|
|
|
|
addressList="${group.addressList}" >编辑</button>
|
|
|
|
|
<button class="btn btn-danger btn-xs remove" id="${group.id}" >删除</button>
|
|
|
|
|
addressList="${group.addressList}" >${I18n.system_opt_edit}</button>
|
|
|
|
|
<button class="btn btn-danger btn-xs remove" id="${group.id}" >${I18n.system_opt_del}</button>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</#list>
|
|
|
|
@ -94,41 +94,41 @@
|
|
|
|
|
<div class="modal-dialog ">
|
|
|
|
|
<div class="modal-content">
|
|
|
|
|
<div class="modal-header">
|
|
|
|
|
<h4 class="modal-title" >新增执行器</h4>
|
|
|
|
|
<h4 class="modal-title" >${I18n.jobgroup_add}</h4>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-body">
|
|
|
|
|
<form class="form-horizontal form" role="form" >
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">AppName<font color="red">*</font></label>
|
|
|
|
|
<div class="col-sm-10"><input type="text" class="form-control" name="appName" placeholder="请输入“AppName”" maxlength="64" ></div>
|
|
|
|
|
<div class="col-sm-10"><input type="text" class="form-control" name="appName" placeholder="${I18n.system_please_input}AppName" maxlength="64" ></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">名称<font color="red">*</font></label>
|
|
|
|
|
<div class="col-sm-10"><input type="text" class="form-control" name="title" placeholder="请输入“名称”" maxlength="12" ></div>
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_title}<font color="red">*</font></label>
|
|
|
|
|
<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>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">排序<font color="red">*</font></label>
|
|
|
|
|
<div class="col-sm-10"><input type="text" class="form-control" name="order" placeholder="请输入“排序”" maxlength="50" ></div>
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_order}<font color="red">*</font></label>
|
|
|
|
|
<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>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">注册方式<font color="red">*</font></label>
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_addressType}<font color="red">*</font></label>
|
|
|
|
|
<div class="col-sm-10">
|
|
|
|
|
<input type="radio" name="addressType" value="0" checked />自动注册
|
|
|
|
|
<input type="radio" name="addressType" value="0" checked />${I18n.jobgroup_field_addressType_0}
|
|
|
|
|
|
|
|
|
|
<input type="radio" name="addressType" value="1" />手动录入
|
|
|
|
|
<input type="radio" name="addressType" value="1" />${I18n.jobgroup_field_addressType_1}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">机器地址<font color="red">*</font></label>
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_registryList}<font color="red">*</font></label>
|
|
|
|
|
<div class="col-sm-10">
|
|
|
|
|
<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>
|
|
|
|
|
<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>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-sm-offset-3 col-sm-6">
|
|
|
|
|
<button type="submit" class="btn btn-primary" >保存</button>
|
|
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">取消</button>
|
|
|
|
|
<button type="submit" class="btn btn-primary" >${I18n.system_save}</button>
|
|
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">${I18n.system_cancel}</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
@ -142,41 +142,41 @@
|
|
|
|
|
<div class="modal-dialog ">
|
|
|
|
|
<div class="modal-content">
|
|
|
|
|
<div class="modal-header">
|
|
|
|
|
<h4 class="modal-title" >编辑执行器</h4>
|
|
|
|
|
<h4 class="modal-title" >${I18n.jobgroup_edit}</h4>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-body">
|
|
|
|
|
<form class="form-horizontal form" role="form" >
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">AppName<font color="red">*</font></label>
|
|
|
|
|
<div class="col-sm-10"><input type="text" class="form-control" name="appName" placeholder="请输入“AppName”" maxlength="64" ></div>
|
|
|
|
|
<div class="col-sm-10"><input type="text" class="form-control" name="appName" placeholder="${I18n.system_please_input}AppName" maxlength="64" ></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">名称<font color="red">*</font></label>
|
|
|
|
|
<div class="col-sm-10"><input type="text" class="form-control" name="title" placeholder="请输入“名称”" maxlength="12" ></div>
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_title}<font color="red">*</font></label>
|
|
|
|
|
<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>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">排序<font color="red">*</font></label>
|
|
|
|
|
<div class="col-sm-10"><input type="text" class="form-control" name="order" placeholder="请输入“排序”" maxlength="50" ></div>
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_order}<font color="red">*</font></label>
|
|
|
|
|
<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>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">注册方式<font color="red">*</font></label>
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_addressType}<font color="red">*</font></label>
|
|
|
|
|
<div class="col-sm-10">
|
|
|
|
|
<input type="radio" name="addressType" value="0" />自动注册
|
|
|
|
|
<input type="radio" name="addressType" value="0" />${I18n.jobgroup_field_addressType_0}
|
|
|
|
|
|
|
|
|
|
<input type="radio" name="addressType" value="1" />手动录入
|
|
|
|
|
<input type="radio" name="addressType" value="1" />${I18n.jobgroup_field_addressType_1}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">机器地址<font color="red">*</font></label>
|
|
|
|
|
<label for="lastname" class="col-sm-2 control-label">${I18n.jobgroup_field_registryList}<font color="red">*</font></label>
|
|
|
|
|
<div class="col-sm-10">
|
|
|
|
|
<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>
|
|
|
|
|
<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>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-sm-offset-3 col-sm-6">
|
|
|
|
|
<button type="submit" class="btn btn-primary" >保存</button>
|
|
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">取消</button>
|
|
|
|
|
<button type="submit" class="btn btn-primary" >${I18n.system_save}</button>
|
|
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">${I18n.system_cancel}</button>
|
|
|
|
|
<input type="hidden" name="id" >
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|