MicroCommunityWeb/public/pages/admin/contractApplyAuditHistoryOrders/contractApplyAuditHistoryOrders.html
2021-04-06 17:56:56 +08:00

53 lines
2.7 KiB
HTML

<div class=" animated fadeInRight ecommerce">
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>起草已办单</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">合同编号</th>
<th class="text-center">合同名称</th>
<th class="text-center">合同类型</th>
<th class="text-center">合同状态</th>
<th class="text-center">创建时间</th>
<th class="text-center">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="auditOrder in contractApplyAuditOrdersInfo.contractApplyAuditOrders">
<td class="text-center">{{auditOrder.contractCode}}</td>
<td class="text-center">{{auditOrder.contractName}}</td>
<td class="text-center">{{auditOrder.contractTypeName}}</td>
<td class="text-center">{{auditOrder.stateName}}</td>
<td class="text-center">{{auditOrder.signingTime}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDetailPurchaseApplyModel(auditOrder)">查看
</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
<vc:create path="common/audit" callBackListener="myAuditOrders" callBackFunction="notifyAudit"></vc:create>
</div>