158 lines
8.0 KiB
HTML
158 lines
8.0 KiB
HTML
<div>
|
|
<div class="row">
|
|
<div class="col-md-1 padding-r-0">
|
|
<div class=" border-radius ">
|
|
<div class="margin-xs-r treeview attendance-staff">
|
|
<ul class="list-group text-center border-radius">
|
|
<!-- -->
|
|
<li class="list-group-item node-orgTree " @click="_switchState('10000')"
|
|
:class="{'vc-node-selected':appUserInfo.conditions.state == '10000'}">
|
|
待审核
|
|
</li>
|
|
<li class="list-group-item node-orgTree " @click="_switchState('12000')"
|
|
:class="{'vc-node-selected':appUserInfo.conditions.state == '12000'}">
|
|
审核成功
|
|
</li>
|
|
<li class="list-group-item node-orgTree " @click="_switchState('13000')"
|
|
:class="{'vc-node-selected':appUserInfo.conditions.state == '13000'}">
|
|
审核失败
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-11">
|
|
<div class="ibox ">
|
|
<div class="ibox-title">
|
|
<h5>
|
|
<vc:i18n name="查询条件"></vc:i18n>
|
|
</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<div class="row">
|
|
<div class="col-sm-2">
|
|
<div class="form-group">
|
|
<input type="text" :placeholder="vc.i18n('请选择人员名称','appUser')"
|
|
v-model="appUserInfo.conditions.ownerName" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-2">
|
|
<div class="form-group">
|
|
<input type="text" :placeholder="vc.i18n('请选择联系人手机号','appUser')"
|
|
v-model="appUserInfo.conditions.link" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-2">
|
|
<div class="form-group">
|
|
<input type="text" :placeholder="vc.i18n('请选择房屋名称','appUser')"
|
|
v-model="appUserInfo.conditions.roomName" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-1">
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryAppUserMethod()">
|
|
<i class="glyphicon glyphicon-search"></i> <span>
|
|
<vc:i18n name="查询"></vc:i18n>
|
|
</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ibox">
|
|
<div class="ibox-title">
|
|
<h5>
|
|
<vc:i18n name="房屋认证" namespace="appUser"></vc:i18n>
|
|
</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
|
|
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">
|
|
<vc:i18n name='编号' namespace='appUser'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='人员名称' namespace='appUser'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='联系人' namespace='appUser'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='绑定房屋' namespace='appUser'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='openId' namespace='appUser'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='申请时间' namespace='appUser'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='状态类型' namespace='appUser'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='审核说明' namespace='appUser'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='备注' namespace='appUser'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='操作'></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="appUser in appUserInfo.appUsers">
|
|
<td class="text-center">{{appUser.auId}}</td>
|
|
<td class="text-center">{{appUser.ownerName}}</td>
|
|
<td class="text-center">{{appUser.link}}</td>
|
|
<td class="text-center">{{appUser.roomName}}</td>
|
|
<td class="text-center">{{appUser.openId}}</td>
|
|
<td class="text-center">{{appUser.createTime}}</td>
|
|
|
|
<td class="text-center">
|
|
<span v-if="appUser.state == '12000'">审核成功</span>
|
|
<span v-if="appUser.state == '10000'">待审核</span>
|
|
<span v-if="appUser.state == '13000'">审核失败</span>
|
|
</td>
|
|
<td class="text-center">{{appUser.stateMsg}}</td>
|
|
<td class="text-center">{{appUser.remark}}</td>
|
|
<td class="text-center">
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs" v-if="appUser.state=='10000'"
|
|
v-on:click="_openEditAppUserModel(appUser)">
|
|
<vc:i18n name='审核'></vc:i18n>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openDeleteAppUserModel(appUser)">
|
|
<vc:i18n name='删除'></vc:i18n>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<vc:create path="frame/pagination"></vc:create>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<vc:create path="owner/authAppUser"></vc:create>
|
|
<vc:create path="owner/deleteAppUser"></vc:create>
|
|
<vc:create path="owner/editAppUser"></vc:create>
|
|
|
|
|
|
</div> |