MicroCommunityWeb/public/components/admin/contractChangeAssets/contractChangeAssets.html
2021-04-26 01:16:13 +08:00

60 lines
2.8 KiB
HTML

<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>关联房屋</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_selectRoom()">
<i class="glyphicon glyphicon-plus"></i>
添加
</button>
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" style="margin-top:10px"
data-page-size="10">
<thead>
<tr>
<!-- <th>房屋ID</th> -->
<th data-hide="phone" class="text-center">房屋</th>
<th data-hide="phone" class="text-center">业主</th>
<th data-hide="phone" class="text-center">电话</th>
<th data-hide="phone" class="text-center">建筑面积</th>
<th data-hide="phone" class="text-center">房屋状态</th>
<th class="text-center">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="room in contractChangeAssetsInfo.rooms">
<td class="text-center">
{{room.floorNum}}-{{room.unitNum}}-{{room.roomNum}}
</td>
<td class="text-center">
{{room.ownerName}}
</td>
<td class="text-center">
{{room.link}}
</td>
<td class="text-center">
{{room.builtUpArea}}平方米
</td>
<td class="text-center">
{{room.stateName}}
</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDelRoomModel(room)">删除</button>
</div>
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
<vc:create path="property/searchRoom" emitChooseRoom="contractChangeAssets" emitLoadData="contractChangeAssets" roomFlag="">
</vc:create>
</div>