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

148 lines
8.5 KiB
HTML

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5><span>
<vc:i18n name="查询条件"></vc:i18n>
</span></h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请选择业主','ownerSettledApplyManage')"
v-model="ownerSettledApplyManageInfo.conditions.ownerNameLike"
class=" form-control">
</div>
</div>
<div class="col-sm-3">
<select class="custom-select" v-model="ownerSettledApplyManageInfo.conditions.state">
<option selected value="">
{{vc.i18n('请选择状态','ownerSettledApplyManage')}}
</option>
<option value="W">{{vc.i18n('待审核','ownerSettledApplyManage')}}</option>
<option value="D">{{vc.i18n('审核中','ownerSettledApplyManage')}}</option>
<option value="C">{{vc.i18n('审核完成','ownerSettledApplyManage')}}</option>
<option value="F">{{vc.i18n('审核失败','ownerSettledApplyManage')}}</option>
</select>
</div>
<div class="col-sm-1">
<button type="button" class="btn btn-primary btn-sm"
v-on:click="_queryOwnerSettledApplyMethod()">
<i class="glyphicon glyphicon-search"></i> <span>
<vc:i18n name="查询"></vc:i18n>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><span>
<vc:i18n name="业主入驻" namespace="ownerSettledApplyManage"></vc:i18n>
</span></h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-white btn-sm" v-on:click="vc.showMarkdown('/pages/owner/ownerSettledApplyManage')">
<span><vc:i18n name="文档"></vc:i18n></span>
</button>
<button type="button" class="btn btn-white btn-sm" v-on:click="_toSetting()">
<span><vc:i18n name="入驻设置" namespace="ownerSettledApplyManage"></vc:i18n></span>
</button>
<button type="button" class="btn btn-primary btn-sm"
v-on:click="_openAddOwnerSettledApplyModal()">
<span>
<vc:i18n name="申请" namespace="ownerSettledApplyManage"></vc:i18n>
</span>
</button>
</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"><span>
<vc:i18n name='申请编号' namespace='ownerSettledApplyManage'></vc:i18n>
</span></th>
<th class="text-center"><span>
<vc:i18n name='业主' namespace='ownerSettledApplyManage'></vc:i18n>
</span></th>
<th class="text-center"><span>
<vc:i18n name='电话' namespace='ownerSettledApplyManage'></vc:i18n>
</span></th>
<th class="text-center"><span>
<vc:i18n name='房屋' namespace='ownerSettledApplyManage'></vc:i18n>
</span></th>
<th class="text-center"><span>
<vc:i18n name='状态' namespace='ownerSettledApplyManage'></vc:i18n>
</span></th>
<th class="text-center"><span>
<vc:i18n name='说明' namespace=' ownerSettledApplyManage'></vc:i18n>
</span></th>
<th class="text-center"><span>
<vc:i18n name='申请时间' namespace='ownerSettledApplyManage'></vc:i18n>
</span></th>
<th class="text-center"><span>
<vc:i18n name='操作'></vc:i18n>
</span></th>
</tr>
</thead>
<tbody>
<tr v-for="ownerSettledApply in ownerSettledApplyManageInfo.ownerSettledApplys">
<td class="text-center">{{ownerSettledApply.applyId}}</td>
<td class="text-center">{{ownerSettledApply.ownerName}}</td>
<td class="text-center">{{ownerSettledApply.ownerLink}}</td>
<td class="text-center">{{ownerSettledApply.roomCount}}(<a href="javascript:void(0)" @click="viewOwnerSettledRooms(ownerSettledApply)">查看房屋</a>)</td>
<td class="text-center">{{ownerSettledApply.stateName}}</td>
<td class="text-center">{{ownerSettledApply.remark}}</td>
<td class="text-center">{{ownerSettledApply.createTime}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDetail(ownerSettledApply)"><span>
<vc:i18n name='详情'></vc:i18n>
</span></button>
</div>
<div class="btn-group" v-if="ownerSettledApply.state != 'C'">
<button class="btn-white btn btn-xs"
v-on:click="_openEditOwnerSettledApplyModel(ownerSettledApply)"><span>
<vc:i18n name='修改'></vc:i18n>
</span></button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteOwnerSettledApplyModel(ownerSettledApply)"><span>
<vc:i18n name='删除'></vc:i18n>
</span></button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
<vc:create path="owner/deleteOwnerSettledApply"></vc:create>
<vc:create path="owner/viewOwnerSettledRooms"></vc:create>
</div>