unit.html 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <div id="component" class="wrapper wrapper-content animated fadeInRight ecommerce">
  2. <vc:create name="unitSelectFloor"></vc:create>
  3. <div class="row">
  4. <div class="col-lg-12">
  5. <div class="ibox">
  6. <div class="ibox-content">
  7. <table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
  8. <thead>
  9. <tr>
  10. <th>单元ID</th>
  11. <th data-hide="phone">单元编号</th>
  12. <th data-hide="phone">总层数</th>
  13. <th data-hide="phone">是否有电梯</th>
  14. <th data-hide="phone,tablet" >创建人</th>
  15. <th data-hide="phone">备注</th>
  16. <th class="text-right">操作</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. <tr v-for="unit in unitInfo.units">
  21. <td>
  22. {{unit.unitId}}
  23. </td>
  24. <td>
  25. {{unit.unitNum}}
  26. </td>
  27. <td>
  28. {{unit.layerCount}}
  29. </td>
  30. <td>
  31. {{unit.lift}}
  32. </td>
  33. <td>
  34. {{unit.userName}}
  35. </td>
  36. <td>
  37. {{unit.remark}}
  38. </td>
  39. <td class="text-right">
  40. <div class="btn-group">
  41. <button class="btn-white btn btn-xs" v-on:click="_openDeleteUnitModel(unit)">删除</button>
  42. </div>
  43. </td>
  44. </tr>
  45. </tbody>
  46. <tfoot>
  47. <tr>
  48. <td colspan="7">
  49. <ul class="pagination float-right"></ul>
  50. </td>
  51. </tr>
  52. </tfoot>
  53. </table>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. <!-- 删除员工权限 -->
  59. <vc:create name="deleteUnit"></vc:create>
  60. </div>