199 lines
7.4 KiB
Plaintext
199 lines
7.4 KiB
Plaintext
<%@ page contentType="text/html;charset=UTF-8" %>
|
||
<%@ include file="/webpage/include/taglib.jsp"%>
|
||
<html>
|
||
<head>
|
||
<title>流程管理</title>
|
||
<meta name="decorator" content="default"/>
|
||
<script type="text/javascript">
|
||
$(document).ready(function(){
|
||
top.$.jBox.tip.mess = null;
|
||
});
|
||
function updateCategory(id, category){
|
||
layer.open({
|
||
type: 1,
|
||
title:"设置分类",
|
||
area: ['350px', '200px'],
|
||
content: $("#categoryBox").html() //这里content是一个普通的String
|
||
});
|
||
$("#categoryBoxId").val(id);
|
||
$("#categoryBoxCategory").val(category);
|
||
}
|
||
</script>
|
||
<script type="text/template" id="categoryBox">
|
||
<form id="categoryForm" action="${ctx}/act/process/updateCategory" method="post" enctype="multipart/form-data"
|
||
style="text-align:center;" onsubmit="loading('正在设置,请稍等...');"><br/>
|
||
|
||
<div class="col-md-12">
|
||
<div class="form-group">
|
||
<label class="col-sm-3 control-label">选择分类:</label>
|
||
<div class="col-sm-9">
|
||
|
||
<input id="categoryBoxId" type="hidden" name="procDefId" value="" />
|
||
<select id="categoryBoxCategory" name="category" class="form-control">
|
||
<c:forEach items="${fns:getDictList('act_category')}" var="dict">
|
||
<option value="${dict.value}">${dict.label}</option>
|
||
</c:forEach>
|
||
</select>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<br/>
|
||
<br/>
|
||
<br/>
|
||
<br/>
|
||
<input id="categorySubmit" class="btn btn-primary" type="submit" value=" 保 存 "/>
|
||
</form>
|
||
</script>
|
||
</head>
|
||
<body class="gray-bg">
|
||
<div class="wrapper wrapper-list-content">
|
||
<div class="ibox">
|
||
<!-- <div class="ibox-title"> -->
|
||
<!-- <h5>流程管理 </h5> -->
|
||
<!-- <div class="ibox-tools"> -->
|
||
<!-- <a class="collapse-link"> -->
|
||
<!-- <i class="fa fa-chevron-up"></i> -->
|
||
<!-- </a> -->
|
||
<!-- <a class="dropdown-toggle" data-toggle="dropdown" href="#"> -->
|
||
<!-- <i class="fa fa-wrench"></i> -->
|
||
<!-- </a> -->
|
||
<!-- <ul class="dropdown-menu dropdown-user"> -->
|
||
<!-- <li><a href="#">选项1</a> -->
|
||
<!-- </li> -->
|
||
<!-- <li><a href="#">选项2</a> -->
|
||
<!-- </li> -->
|
||
<!-- </ul> -->
|
||
<!-- <a class="close-link"> -->
|
||
<!-- <i class="fa fa-times"></i> -->
|
||
<!-- </a> -->
|
||
<!-- </div> -->
|
||
<!-- </div> -->
|
||
|
||
<div class="ibox-content ibox-content-list">
|
||
<sys:message content="${message}"/>
|
||
<div class="pane-query-circle">
|
||
|
||
<!--查询条件-->
|
||
<div class="row">
|
||
<div class="col-sm-12">
|
||
<form:form id="searchForm" modelAttribute="category" action="${ctx}/act/process/" method="post" class="form-inline">
|
||
<input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
|
||
<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
|
||
<table:sortColumn id="orderBy" name="orderBy" value="${page.orderBy}" callback="sortOrRefresh();"/><!-- 支持排序 -->
|
||
<div class="row pane-query-anying">
|
||
|
||
<div class="col-sm-6 col-md-4 col-lg-3 pane-query-anying-div">
|
||
<div class="pane-query-anying-div-text">全部分类:</div>
|
||
<div class="pane-query-anying-div-input">
|
||
<select id="category" name="category" class="form-control">
|
||
<option value="">全部分类</option>
|
||
<c:forEach items="${fns:getDictList('act_category')}" var="dict">
|
||
<option value="${dict.value}" ${dict.value==category?'selected':''}>${dict.label}</option>
|
||
</c:forEach>
|
||
</select>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col-sm-6 col-md-4 col-lg-3 pane-query-anying-div pane-query-anying-div-button">
|
||
<div class="pull-right pane-query-anying-div-input">
|
||
<button class="btn btn-primary btn-rounded btn-outline btn-sm " onclick="search()" ><i class="fa fa-search"></i> 查询</button>
|
||
<button class="btn btn-primary btn-rounded btn-outline btn-sm " onclick="resetAll()" ><i class="fa fa-refresh"></i> 重置</button>
|
||
<table:addRow url="${ctx}/act/process/deploy/" label="上传流程文件" title="流程"></table:addRow><!-- 增加按钮 -->
|
||
<!-- <button class="btn btn-white btn-sm " data-toggle="tooltip" data-placement="left" onclick="sortOrRefresh()" title="刷新"><i class="glyphicon glyphicon-repeat"></i> 刷新</button> -->
|
||
</div>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
</form:form>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- 工具栏 -->
|
||
<!-- <div class="row"> -->
|
||
<!-- <div class="col-sm-12"> -->
|
||
<!-- <div class="pull-left"> -->
|
||
<%-- <!-- <!--<shiro:hasPermission name="act:process:deploy">--> </shiro:hasPermission> --> --%>
|
||
|
||
|
||
<!-- </div> -->
|
||
<!-- <div class="pull-right"> -->
|
||
<!-- </div> -->
|
||
<!-- </div> -->
|
||
<!-- </div> -->
|
||
|
||
|
||
<!-- 表格 -->
|
||
<div class="pane-query-circle-list">
|
||
<table id="contentTable" class="table table-striped table-bordered table-hover table-condensed dataTables-example dataTable">
|
||
<thead>
|
||
<tr>
|
||
<th>流程分类</th>
|
||
<th>流程ID</th>
|
||
<th>流程标识</th>
|
||
<th>流程名称</th>
|
||
<th>流程版本</th>
|
||
<th>流程XML</th>
|
||
<th>流程图片</th>
|
||
<th>部署时间</th>
|
||
<th style="width: 130px">操作</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<c:forEach items="${page.list}" var="object">
|
||
<c:set var="process" value="${object[0]}" />
|
||
<c:set var="deployment" value="${object[1]}" />
|
||
<tr>
|
||
<td><a href="javascript:updateCategory('${process.id}', '${process.category}')" title="设置分类">${fns:getDictLabel(process.category,'act_category','无分类')}</a></td>
|
||
<td class="query-datatable-nowrap">
|
||
<label class="query-datatable-nowrap td-fixed-width-100" title="${process.id}">
|
||
${process.id}
|
||
</label>
|
||
</td>
|
||
<td class="query-datatable-nowrap">
|
||
<label class="query-datatable-nowrap td-fixed-width-100" title="${process.key}">
|
||
${process.key}
|
||
</label>
|
||
</td>
|
||
<td class="query-datatable-nowrap">
|
||
<label class="query-datatable-nowrap td-fixed-width-100" title="${process.name}">
|
||
${process.name}
|
||
</label>
|
||
</td>
|
||
<td><b title='流程版本号'>V: ${process.version}</b></td>
|
||
<td class="query-datatable-nowrap">
|
||
<label class="query-datatable-nowrap td-fixed-width-100" title="${process.resourceName}">
|
||
<a target="_blank" href="${ctx}/act/process/resource/read?procDefId=${process.id}&resType=xml">${process.resourceName}</a>
|
||
</label>
|
||
</td>
|
||
<td class="query-datatable-nowrap">
|
||
<label class="query-datatable-nowrap td-fixed-width-100" title="${process.diagramResourceName}">
|
||
<a target="_blank" href="${ctx}/act/process/resource/read?procDefId=${process.id}&resType=image">${process.diagramResourceName}</a>
|
||
</label>
|
||
</td>
|
||
<td><fmt:formatDate value="${deployment.deploymentTime}" pattern="yyyy-MM-dd HH:mm:ss"/></td>
|
||
<td>
|
||
<c:if test="${process.suspended}">
|
||
<a href="${ctx}/act/process/update/active?procDefId=${process.id}" onclick="return confirmx('确认要激活吗?', this.href)">激活</a>
|
||
</c:if>
|
||
<c:if test="${!process.suspended}">
|
||
<a href="${ctx}/act/process/update/suspend?procDefId=${process.id}" onclick="return confirmx('确认挂起除吗?', this.href)">挂起</a>
|
||
</c:if>
|
||
<a href='${ctx}/act/process/delete?deploymentId=${process.deploymentId}' onclick="return confirmx('确认要删除该流程吗?', this.href)">删除</a>
|
||
<a href='${ctx}/act/process/convert/toModel?procDefId=${process.id}' onclick="return confirmx('确认要转换为模型吗?', this.href)">转换为模型</a>
|
||
</td>
|
||
</tr>
|
||
</c:forEach>
|
||
</tbody>
|
||
</table>
|
||
|
||
<!-- 分页代码 -->
|
||
<table:page page="${page}"></table:page>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|