Files
PropertyDeployment/resources/Web/MicroCommunityIotWeb/html/components/property/roomDetailOwner/roomDetailOwner.html
2025-12-09 20:22:03 +08:00

118 lines
5.6 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="roomDetailOwnerInfo.roomNum" type="text" :placeholder="vc.i18n('请填写房屋编号','roomDetailOwner')"
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="_qureyRoomDetailOwner()">
<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="人员人脸" namespace="listOwner"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="姓名" namespace="listOwner"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="性别" namespace="listOwner"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="身份证" namespace="listOwner"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="家庭住址" namespace="listOwner"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="房屋数" namespace="listOwner"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="人员类型" namespace="listOwner"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="车辆数" namespace="listOwner"></vc:i18n>
</th>
<th v-for="(item,index) in roomDetailOwnerInfo.listColumns" class="text-center">{{item}}</th>
<th class="text-center">
<vc:i18n name="操作" namespace="listOwner"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="owner in roomDetailOwnerInfo.owners">
<td class="text-center" style="white-space: nowrap;">
<img style="width: 60px; height: 60px;" class="border-radius" v-if="owner.url" v-bind:src="owner.url" v-on:click="_viewOwnerFace(owner.url)" />
<img style="width: 60px; height: 60px;" class="border-radius" v-else src="/img/noPhoto.jpg" />
</td>
<td class="text-center">
{{owner.name}}({{owner.link}})
</td>
<td class="text-center">
{{owner.sex == 0 ? '男' : '女'}}
</td>
<td class="text-center">
{{owner.idCard || '-'}}
</td>
<td class="text-center">
{{owner.address || '-'}}
</td>
<td class="text-center">
<!-- <a href="javascript:void(0)" @click="_viewOwnerRooms(owner)">
{{owner.roomCount || 0}}
</a> -->
{{owner.roomCount || 0}}
</td>
<td class="text-center">
{{owner.ownerTypeName }}
</td>
<td class="text-center">
<!-- <a href="javascript:void(0)" @click="_viewOwnerCars(owner)">
{{owner.carCount || 0}}
</a> -->
{{owner.carCount || 0}}
</td>
<td v-for="item in owner.listValues" class="text-center">
{{item || '-'}}
</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs " v-on:click="_openDelOwnerModel(owner)">
<vc:i18n name="删除" namespace="listOwner"></vc:i18n>
</button>
</div>
<!-- <div class="btn-group">
<button class="btn-white btn btn-xs " v-on:click="_openOwnerDetailModel(owner)">
<vc:i18n name="详情" namespace="listOwner"></vc:i18n>
</button>
</div> -->
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-8">
<vc:create namespace="roomDetailOwner" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
<!-- <vc:create path="property/ownerExitRoom"></vc:create>
<vc:create path="property/editRoom"></vc:create> -->
</div>