MicroCommunityWeb/public/pages/property/listOwnerMember/listOwnerMember.html

86 lines
4.1 KiB
HTML
Executable File

<div>
<vc:create path="property/memberSelectOwner">
</vc:create>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">成员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 data-hide="phone" class="text-center">联系方式</th>
<th data-hide="phone" class="text-center">创建员工</th>
<th data-hide="phone" class="text-center">备注</th>
<th v-for="(item,index) in memberInfo.listColumns" class="text-center">{{item}}</th>
<th class="text-center">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="owner in memberInfo.members">
<td class="text-center">
{{owner.memberId}}
</td>
<td class="text-center">
{{owner.name}}
</td>
<td class="text-center">
{{owner.sex == 0 ? '男' : '女'}}
</td>
<td class="text-center">
{{owner.age}}
</td>
<td class="text-center">
{{owner.ownerTypeName}}
</td>
<td class="text-center">
{{owner.idCard}}
</td>
<td class="text-center">
{{owner.link}}
</td>
<td class="text-center">
{{owner.userName}}
</td>
<td class="text-center">
{{owner.remark}}
</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="_openEditOwnerModel(owner)">修改
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openDeleteOwnerModel(owner)">删除
</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="14">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</div>
<!-- 删除员工权限 -->
<vc:create path="property/editOwner" notifyLoadDataComponentName="listOwnerMember"
componentTitle="成员">
</vc:create>
<vc:create path="property/deleteOwner" notifyLoadDataComponentName="listOwnerMember">
</vc:create>
</div>