Files
2025-12-09 20:22:03 +08:00

80 lines
4.0 KiB
HTML

<div>
<vc:create path="admin/viewRentingPoolInfo"></vc:create>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><span><vc:i18n name="租房流转" namespace="rentingDetail"></vc:i18n></span></h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<table class="table table-stripped">
<thead>
<tr>
<th scope="col"><span><vc:i18n name="序号" namespace="rentingDetail"></vc:i18n></span></th>
<th scope="col"><span><vc:i18n name="处理人" namespace="rentingDetail"></vc:i18n></span></th>
<th scope="col"><span><vc:i18n name="电话" namespace="rentingDetail"></vc:i18n></span></th>
<th scope="col"><span><vc:i18n name="状态" namespace="rentingDetail"></vc:i18n></span></th>
<th scope="col"><span><vc:i18n name="处理时间" namespace="rentingDetail"></vc:i18n></span></th>
<th scope="col"><span><vc:i18n name="角色" namespace="rentingDetail"></vc:i18n></span></th>
<th scope="col"><span><vc:i18n name="意见" namespace="rentingDetail"></vc:i18n></span></th>
</tr>
</thead>
<tbody>
<tr v-for="(item,index) in rentingDetailInfo.rentingFlows">
<th scope="row">{{index+1}}</th>
<td>{{item.useName}}</td>
<td>{{item.userTel}}</td>
<td>{{item.stateName}}</td>
<td>{{item.dealTime}}</td>
<td>{{_getUserRole(item.userRole)}}</td>
<td>{{item.context}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><span><vc:i18n name="服务费分成" namespace="rentingDetail"></vc:i18n></span></h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<table class="table table-stripped">
<thead>
<tr>
<th scope="col"><span><vc:i18n name="序号" namespace="rentingDetail"></vc:i18n></span></th>
<th scope="col"><span><vc:i18n name="费用名称" namespace="rentingDetail"></vc:i18n></span></th>
<th scope="col"><span><vc:i18n name="分成金额" namespace="rentingDetail"></vc:i18n></span></th>
<th scope="col"><span><vc:i18n name="支付时间" namespace="rentingDetail"></vc:i18n></span></th>
<th scope="col"><span><vc:i18n name="收款对象" namespace="rentingDetail"></vc:i18n></span></th>
</tr>
</thead>
<tbody>
<tr v-for="(item,index) in rentingDetailInfo.fees">
<th scope="row">{{index+1}}</th>
<td>{{item.feeName}}</td>
<td>{{item.amount}}</td>
<td>{{item.startTime}}</td>
<td>{{item.incomeObjName}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>