Browse Source

代采订单审批流页面显示

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@10788 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
hejq 8 years ago
parent
commit
61d78c1123
1 changed files with 54 additions and 0 deletions
  1. 54 0
      src/main/webapp/resources/tpl/index/purc/modal/approval_detail.html

+ 54 - 0
src/main/webapp/resources/tpl/index/purc/modal/approval_detail.html

@@ -0,0 +1,54 @@
+<div class="modal-header">
+	<h3 class="modal-title">
+		<i class="fa fa-user fa-fw text-default"></i>审批流程
+	</h3>
+</div>
+<div class="modal-body">
+	<div >
+		<table width="50%" class="block table table-bordered table-striped table-hover">
+			<thead>
+				<th width="120px;" class="text-center">已处理</th>
+			</thead>
+			<tbody ng-if="nodes.length != 0">
+				<div style="overflow-y: scroll; width: 100%; max-height: 500px" >
+					<tr ng-repeat="node in nodes | orderBy : 'jn_dealTime' ">
+						<td width="80px;">
+							处理节点: <a style="text-decoration: none" ng-bind="node.jn_name"></a>
+							处理结果: <a style="text-decoration: none" ng-bind="node.jn_dealResult"></a>
+							处理时间: <a style="text-decoration: none" ng-bind="node.jn_dealTime"></a>
+						</td>
+					</tr>
+				</div>
+			<tbody>
+			<tbody ng-if="nodes.length == 0">
+				<div>
+					<tr>
+						<td width="80px;" class="text-center"><i class="fa fa-exclamation-circle"></i> 暂无相关信息</td>
+					</tr>
+				</div>
+			<tbody>
+			<thead>
+				<th width="120px;" class="text-center">待处理</th>
+			</thead>
+			<tbody ng-if="process.length != 0">
+				<div style="overflow-y: scroll; width: 100%; max-height: 500px" >
+					<tr ng-repeat="pro in process | orderBy : 'jp_id' ">
+						<td width="80px;">
+							处理节点: <a style="text-decoration: none" ng-bind="pro.jp_nodeName"></a>
+						</td>
+					</tr>
+				</div>
+			<tbody>
+			<tbody ng-if="process.length == 0">
+				<div>
+					<tr>
+						<td width="80px;" class="text-center"><i class="fa fa-exclamation-circle"></i> 暂无相关信息</td>
+					</tr>
+				</div>
+			<tbody>
+		</table>
+	</div>
+</div>
+<div class="modal-footer">
+	<button class="btn btn-default" ng-click="cancel()" type="button">取消</button>
+</div>