enterCommunity.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <div id="component" class="wrapper wrapper-content animated fadeInRight ecommerce">
  2. <div class="row">
  3. <div class="col-lg-12">
  4. <div class="ibox">
  5. <div class="ibox-title">
  6. <h5>已入驻小区</h5>
  7. <div class="ibox-tools" style="top:10px;">
  8. <button type="button" class="btn btn-primary btn-sm" data-toggle="modal" data-target="#addStaffModel">
  9. <i class="glyphicon glyphicon-plus"></i>
  10. 入驻小区
  11. </button>
  12. </div>
  13. </div>
  14. <div class="ibox-content">
  15. <table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
  16. <thead>
  17. <tr>
  18. <th>小区ID</th>
  19. <th data-hide="phone">名称</th>
  20. <th data-hide="phone">地址</th>
  21. <th data-hide="phone">地标</th>
  22. <th data-hide="phone,tablet" >城市编码</th>
  23. <th data-hide="phone">状态</th>
  24. <th class="text-right">操作</th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. <tr v-for="community in communityInfo.enterCommunityInfo">
  29. <td>
  30. {{community.communityId}}
  31. </td>
  32. <td>
  33. {{community.name}}
  34. </td>
  35. <td>
  36. {{community.address}}
  37. </td>
  38. <td>
  39. {{community.nearbyLandmarks}}
  40. </td>
  41. <td>
  42. {{community.cityCode}}
  43. </td>
  44. <td>
  45. {{community.statusCd == 0 ? '在用': '审核中'}}
  46. </td>
  47. <td class="text-right">
  48. <div class="btn-group">
  49. <button class="btn-white btn btn-xs" v-on:click="_openExitCommunityModel(community)">退出</button>
  50. </div>
  51. </td>
  52. </tr>
  53. </tbody>
  54. <tfoot>
  55. <tr>
  56. <td colspan="7">
  57. <ul class="pagination float-right"></ul>
  58. </td>
  59. </tr>
  60. </tfoot>
  61. </table>
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. </div>