Files
PropertyDeployment/resources/Web/MicroCommunityIotWeb/html/pages/owner/roomUnBindOwner/roomUnBindOwner.html
2025-12-09 20:22:03 +08:00

68 lines
3.3 KiB
HTML

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>
<vc:i18n name="解绑人员" namespace="roomBindOwner"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-white btn-sm" v-on:click="_goBack()">
返回
</button>
</div>
</div>
<div class="ibox-content">
<table class="table table-stripped table-condensed" data-page-size="10">
<thead>
<tr>
<th data-hide="phone" class="text-center ">
<vc:i18n name="人员名称" namespace="roomUnBindOwner"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="人员性别" namespace="roomUnBindOwner"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="人员类型" namespace="roomUnBindOwner"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="联系电话" namespace="roomUnBindOwner"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="操作" namespace="roomUnBindOwner"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="owner in roomUnBindOwnerInfo.owners">
<!-- <td>{{room.roomId}}</td> -->
<td class="text-center ">
{{owner.name}}
</td>
<td class="text-center">
{{owner.sex == 0 ? '男' : '女'}}
</td>
<td class="text-center hand">
{{owner.ownerTypeName }}
</td>
<td class="text-center hand">
{{owner.link}}
</td>
<td class="text-center hc-table-fix-right-td">
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="ownerExitRoomModel(owner)">
<vc:i18n name="解绑" namespace="roomUnBindOwner"></vc:i18n>
</button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<vc:create path="owner/ownerExitRoom"></vc:create>
</div>