| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <div id="component" class="wrapper wrapper-content animated fadeInRight ecommerce">
- <div class="row">
- <div class="col-lg-12">
- <div class="ibox">
- <div class="ibox-title">
- <h5>已入驻小区</h5>
- <div class="ibox-tools" style="top:10px;">
- <button type="button" class="btn btn-primary btn-sm" data-toggle="modal" data-target="#addStaffModel">
- <i class="glyphicon glyphicon-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>小区ID</th>
- <th data-hide="phone">名称</th>
- <th data-hide="phone">地址</th>
- <th data-hide="phone">地标</th>
- <th data-hide="phone,tablet" >城市编码</th>
- <th data-hide="phone">状态</th>
- <th class="text-right">操作</th>
- </tr>
- </thead>
- <tbody>
- <tr v-for="community in communityInfo.enterCommunityInfo">
- <td>
- {{community.communityId}}
- </td>
- <td>
- {{community.name}}
- </td>
- <td>
- {{community.address}}
- </td>
- <td>
- {{community.nearbyLandmarks}}
- </td>
- <td>
- {{community.cityCode}}
- </td>
- <td>
- {{community.statusCd == 0 ? '在用': '审核中'}}
- </td>
- <td class="text-right">
- <div class="btn-group">
- <button class="btn-white btn btn-xs" v-on:click="_openExitCommunityModel(community)">退出</button>
- </div>
- </td>
- </tr>
- </tbody>
- <tfoot>
- <tr>
- <td colspan="7">
- <ul class="pagination float-right"></ul>
- </td>
- </tr>
- </tfoot>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
|