|
|
@@ -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>
|