74 lines
3.5 KiB
HTML
74 lines
3.5 KiB
HTML
<div class="margin-top">
|
|
<!-- <div class="row margin-top-lg">
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl">
|
|
<input v-model="roomDetailLockInoutInfo.roomNum" type="text" :placeholder="vc.i18n('请填写房屋编号','roomDetailLockInout')"
|
|
class="form-control">
|
|
</div>
|
|
<div class="col-lg-2 padding-right-xs padding-right-xl">
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
|
|
v-on:click="_qureyRoomDetailAccessControl()">
|
|
<i class="fa fa-search"></i>查询
|
|
</button>
|
|
</div>
|
|
|
|
<div class="col-lg-8 text-right">
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px" v-if="vc.hasPrivilege('502023021978930012')" v-on:click="_openAddOwnerRoom()">
|
|
<vc:i18n name="交房" namespace="simplifyRoomFee"></vc:i18n>
|
|
</button>
|
|
|
|
</div>
|
|
</div> -->
|
|
<div class="margin-top">
|
|
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">
|
|
<vc:i18n name='房屋ID' namespace='roomDetailLockInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='名称' namespace='roomDetailLockInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='楼层' namespace='roomDetailLockInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='房屋类型' namespace='roomDetailLockInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='业主' namespace='roomDetailLockInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='建筑/室内面积' namespace='roomDetailLockInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='房屋状态' namespace='roomDetailLockInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='交房时间' namespace='roomDetailLockInout'></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="room in machineDetailRoomInfo.rooms">
|
|
<td class="text-center">{{room.roomId}}</td>
|
|
<td class="text-center">{{room.floorNum}}-{{room.unitNum}}-{{room.roomNum}}</td>
|
|
<td class="text-center">{{room.layer}}</td>
|
|
<td class="text-center">{{room.roomSubTypeName}}</td>
|
|
<td class="text-center">{{room.ownerName}}</td>
|
|
<td class="text-center">{{room.builtUpArea}}/{{room.roomArea}} 平方米</td>
|
|
<td class="text-center">{{room.stateName}}</td>
|
|
<td class="text-center">{{room.startTime}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<vc:create namespace="machineDetailRoom" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |