优化公摊公式计算

This commit is contained in:
java110 2020-09-16 16:50:22 +08:00
parent b31e22d722
commit c5ee194c28
3 changed files with 11 additions and 4 deletions

View File

@ -60,7 +60,7 @@
<select class="custom-select" v-model="feeSharingInfo.formulaId">
<option selected disabled value="">必填,请选择收费项目</option>
<option v-for="(item,index) in feeSharingInfo.formulas" :key="index"
v-bind:value="item.formulaId">{{item.formulaValue}}
v-bind:value="item.formulaId">{{item.formulaValue}}({{item.formulaDesc}})
</option>
</select>
</div>

View File

@ -82,7 +82,6 @@
<td class="text-center">{{rentingAppointment.appointmentTime}}</td>
<td class="text-center">{{rentingAppointment.appointmentRoomName}}</td>
<td class="text-center">{{rentingAppointment.roomName}}</td>
<td class="text-center">{{rentingAppointment.stateName}}</td>
<td class="text-center">{{rentingAppointment.remark}}</td>
<td class="text-right">

View File

@ -67,7 +67,7 @@
<th class="text-center">业主名称</th>
<th class="text-center">业主电话</th>
<th class="text-center">状态</th>
<th class="text-center">操作</th>
<th class="text-right">操作</th>
</tr>
@ -83,7 +83,13 @@
<td class="text-center">{{rentingPool.ownerName}}</td>
<td class="text-center">{{rentingPool.ownerTel}}</td>
<td class="text-center">{{rentingPool.stateName}}</td>
<td class="text-center">
<td class="text-right">
<div class="btn-group" if="rentingPool.state == '3'">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteRentingPoolModel(rentingPool)">租客支付</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openEditRentingPoolModel(rentingPool)">修改</button>
@ -92,6 +98,8 @@
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteRentingPoolModel(rentingPool)">删除</button>
</div>
</td>
</tr>