<!DOCTYPE html>
|
<html>
|
<head>
|
<#import "../common/common.macro.ftl" as netCommon>
|
<@netCommon.commonStyle />
|
<!-- DataTables -->
|
<link rel="stylesheet" href="${request.contextPath}/static/adminlte/bower_components/datatables.net-bs/css/dataTables.bootstrap.min.css">
|
<title>${I18n.admin_name}</title>
|
</head>
|
<body class="hold-transition skin-blue sidebar-mini <#if cookieMap?exists && cookieMap["xxljob_adminlte_settings"]?exists && "off" == cookieMap["xxljob_adminlte_settings"].value >sidebar-collapse</#if> ">
|
<div class="wrapper">
|
<!-- header -->
|
<@netCommon.commonHeader />
|
<!-- left -->
|
<@netCommon.commonLeft "jobgroup" />
|
|
<!-- Content Wrapper. Contains page content -->
|
<div class="content-wrapper">
|
<!-- Content Header (Page header) -->
|
<section class="content-header">
|
<h1>${I18n.jobgroup_name}</h1>
|
</section>
|
|
<!-- Main content -->
|
<section class="content">
|
|
<div class="row">
|
<div class="col-xs-12">
|
<div class="box">
|
<div class="box-header">
|
<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" >${I18n.jobgroup_field_order}</th>
|
<th name="appName" >AppName</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>
|
<#if list?exists && list?size gt 0>
|
<#list list as group>
|
<tr>
|
<#--<td>${group.id}</td>-->
|
<td>${group.order}</td>
|
<td>${group.appName}</td>
|
<td>${group.title}</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>
|
<span class="badge bg-green" title="${item}" >
|
<#if item?length gt 35>
|
${item?substring(0, 35)}...
|
<#else>
|
${item}
|
</#if>
|
</span>
|
<br>
|
</#list>
|
</#if>
|
</td>
|
<td>
|
<button class="btn btn-warning btn-xs update"
|
id="${group.id}"
|
appName="${group.appName}"
|
title="${group.title}"
|
order="${group.order}"
|
addressType="${group.addressType}"
|
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>
|
</#if>
|
</tbody>
|
</table>
|
</div>
|
</div>
|
</div>
|
</div>
|
</section>
|
</div>
|
|
<!-- 新增.模态框 -->
|
<div class="modal fade" id="addModal" tabindex="-1" role="dialog" aria-hidden="true">
|
<div class="modal-dialog ">
|
<div class="modal-content">
|
<div class="modal-header">
|
<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="${I18n.system_please_input}AppName" maxlength="64" ></div>
|
</div>
|
<div class="form-group">
|
<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">${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">${I18n.jobgroup_field_addressType}<font color="red">*</font></label>
|
<div class="col-sm-10">
|
<input type="radio" name="addressType" value="0" checked />${I18n.jobgroup_field_addressType_0}
|
|
<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">${I18n.jobgroup_field_registryList}<font color="red">*</font></label>
|
<div class="col-sm-10">
|
<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" >${I18n.system_save}</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal">${I18n.system_cancel}</button>
|
</div>
|
</div>
|
</form>
|
</div>
|
</div>
|
</div>
|
</div>
|
|
<!-- 更新.模态框 -->
|
<div class="modal fade" id="updateModal" tabindex="-1" role="dialog" aria-hidden="true">
|
<div class="modal-dialog ">
|
<div class="modal-content">
|
<div class="modal-header">
|
<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="${I18n.system_please_input}AppName" maxlength="64" ></div>
|
</div>
|
<div class="form-group">
|
<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">${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">${I18n.jobgroup_field_addressType}<font color="red">*</font></label>
|
<div class="col-sm-10">
|
<input type="radio" name="addressType" value="0" />${I18n.jobgroup_field_addressType_0}
|
|
<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">${I18n.jobgroup_field_registryList}<font color="red">*</font></label>
|
<div class="col-sm-10">
|
<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" >${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>
|
</form>
|
</div>
|
</div>
|
</div>
|
</div>
|
|
<!-- footer -->
|
<@netCommon.commonFooter />
|
</div>
|
|
<@netCommon.commonScript />
|
<!-- DataTables -->
|
<script src="${request.contextPath}/static/adminlte/bower_components/datatables.net/js/jquery.dataTables.min.js"></script>
|
<script src="${request.contextPath}/static/adminlte/bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js"></script>
|
<#-- jquery.validate -->
|
<script src="${request.contextPath}/static/plugins/jquery/jquery.validate.min.js"></script>
|
<script src="${request.contextPath}/static/js/jobgroup.index.1.js"></script>
|
</body>
|
</html>
|