MicroCommunityWeb/public/components/admin/contractChangeAssets/contractChangeAssets.html
2022-04-22 00:24:24 +08:00

61 lines
3.4 KiB
HTML

<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><vc:i18n name="关联房屋" namespace="contractChangeAssets"></vc:i18n></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><vc:i18n name="房屋" namespace="contractChangeAssets"></vc:i18n>ID</th> -->
<th data-hide="phone" class="text-center"><vc:i18n name="房屋" namespace="contractChangeAssets"></vc:i18n></th>
<th data-hide="phone" class="text-center"><vc:i18n name="业主" namespace="contractChangeAssets"></vc:i18n></th>
<th data-hide="phone" class="text-center"><vc:i18n name="电话" namespace="contractChangeAssets"></vc:i18n></th>
<th data-hide="phone" class="text-center"><vc:i18n name="建筑面积" namespace="contractChangeAssets"></vc:i18n></th>
<th data-hide="phone" class="text-center"><vc:i18n name="房屋状态" namespace="contractChangeAssets"></vc:i18n></th>
<th class="text-center"><vc:i18n name="操作" namespace="contractChangeAssets"></vc:i18n></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}}<vc:i18n name="平方米" namespace="contractChangeAssets"></vc:i18n>
</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)"><vc:i18n name="删除" namespace="contractChangeAssets"></vc:i18n></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>