mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-26 16:19:44 +08:00
137 lines
7.4 KiB
HTML
137 lines
7.4 KiB
HTML
<div>
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox ">
|
|
<div class="ibox-title">
|
|
<h5>
|
|
<span><vc:i18n name="查询条件" namespace="listFloor"></vc:i18n></span>
|
|
</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
<!-- <button type="button" class="btn btn-link btn-sm" style="margin-right:10px;"
|
|
v-on:click="_moreCondition()"><span><vc:i18n name="更多" namespace="listFloor"></vc:i18n></span>
|
|
</button>-->
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
<div class="form-group">
|
|
<input type="text" :placeholder="vc.i18n('请输入楼栋ID','listFloor')" v-model="listFloorInfo.conditions.floorId" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<div class="form-group">
|
|
<input type="text" :placeholder="vc.i18n('请输入楼栋编号','listFloor')" v-model="listFloorInfo.conditions.floorNum" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<div class="form-group">
|
|
<input type="text" :placeholder="vc.i18n('请输入楼栋名称','listFloor')" v-model="listFloorInfo.conditions.floorName" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-1">
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryFloorMethod()">
|
|
<i class="fa fa-search"></i> <span><vc:i18n name="查询" namespace="listFloor"></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="listFloor"></vc:i18n></span>
|
|
</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddFloorModal()" v-if="vc.hasPrivilege('502020082433687928')">
|
|
<i class="fa fa-plus"></i>
|
|
添加楼栋
|
|
</button>
|
|
<!--<button type="button" class="btn btn-primary btn-sm" v-on:click="_openBatchAddFloorModal()">
|
|
<i class="fa fa-plus"></i>
|
|
批量生成
|
|
</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="listFloor"></vc:i18n></span>
|
|
</th>
|
|
<th class="text-center">
|
|
<span><vc:i18n name="编号" namespace="listFloor"></vc:i18n></span>
|
|
</th>
|
|
<th class="text-center">
|
|
<span><vc:i18n name="建筑面积" namespace="listFloor"></vc:i18n></span>
|
|
</th>
|
|
<th class="text-center">
|
|
<span><vc:i18n name="楼栋" namespace="listFloor"></vc:i18n></span>ID</th>
|
|
<th class="text-center">
|
|
<span><vc:i18n name="创建员工" namespace="listFloor"></vc:i18n></span>
|
|
</th>
|
|
<th class="text-center">
|
|
<span><vc:i18n name="操作" namespace="listFloor"></vc:i18n></span>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="floor in listFloorInfo.floors">
|
|
<td class="text-center">
|
|
{{floor.floorName}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{floor.floorNum}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{floor.floorArea}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{floor.floorId}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{floor.userName}}
|
|
</td>
|
|
<td class="text-center">
|
|
<div class="btn-group" v-if="vc.hasPrivilege('502020082482767929')">
|
|
<button class="btn-white btn btn-xs" v-on:click="_openEditFloorModel(floor)"><span><vc:i18n name="修改" namespace="listFloor"></vc:i18n></span>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group" v-if="vc.hasPrivilege('502020082472047930')">
|
|
<button class="btn-white btn btn-xs" v-on:click="_openDelFloorModel(floor)"><span><vc:i18n name="删除" namespace="listFloor"></vc:i18n></span>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs" v-on:click="_openAddUnit(floor)"><span><vc:i18n name="添加单元" namespace="listFloor"></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="property/addFloor" callBackListener="" callBackFunction=""></vc:create>
|
|
<!--<vc:create path="property/batchAddFloor"
|
|
callBackListener=""
|
|
callBackFunction=""></vc:create>
|
|
-->
|
|
<vc:create path="property/editFloor"></vc:create>
|
|
<vc:create path="property/deleteFloor"></vc:create>
|
|
</div>
|