MicroCommunityWeb/public/pages/admin/orderDetailManage/orderDetailManage.html
2022-04-26 19:22:36 +08:00

44 lines
2.1 KiB
HTML
Executable File

<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><span><vc:i18n name="受理单明细" namespace="orderDetailManage"></vc:i18n></span></h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm "
v-on:click="_goBack()" style="margin-right:10px">
返回
</button>
</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"><span><vc:i18n name="订单" namespace="orderDetailManage"></vc:i18n></span>ID</th>
<th class="text-center"><span><vc:i18n name="业务" namespace="orderDetailManage"></vc:i18n></span>ID</th>
<th class="text-center"><span><vc:i18n name="业务类型" namespace="orderDetailManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="创建时间" namespace="orderDetailManage"></vc:i18n></span></th>
</tr>
</thead>
<tbody>
<tr v-for="orderDetail in orderDetailInfo.orderDetails">
<td class="text-center">{{orderDetail.oId}}</td>
<td class="text-center">{{orderDetail.bId}}</td>
<td class="text-center">{{orderDetail.businessTypeCdName}}</td>
<td class="text-center">{{orderDetail.createTime}}</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</div>