room.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <div id="component" class="wrapper wrapper-content animated fadeInRight ecommerce">
  2. <vc:create name="roomSelectFloor"
  3. openAddRoomModelName="addRoom"
  4. ></vc:create>
  5. <div class="row">
  6. <div class="col-lg-12">
  7. <div class="ibox">
  8. <div class="ibox-content">
  9. <table class="footable table table-stripped toggle-arrow-tiny" data-page-size="10">
  10. <thead>
  11. <tr>
  12. <th>房屋ID</th>
  13. <th data-hide="phone">房屋编号</th>
  14. <th data-hide="phone">单元</th>
  15. <th data-hide="phone">楼层</th>
  16. <th data-hide="phone">房间数</th>
  17. <th data-hide="phone" >户型</th>
  18. <th data-hide="phone">建筑面积</th>
  19. <th data-hide="phone">单价</th>
  20. <th data-hide="phone">创建员工</th>
  21. <th data-hide="phone">备注</th>
  22. <th class="text-right">操作</th>
  23. </tr>
  24. </thead>
  25. <tbody>
  26. <tr v-for="room in roomInfo.rooms">
  27. <td>
  28. {{room.roomId}}
  29. </td>
  30. <td>
  31. {{room.roomNum}}
  32. </td>
  33. <td>
  34. {{room.unitNum}}
  35. </td>
  36. <td>
  37. {{room.layer}}
  38. </td>
  39. <td>
  40. {{room.section}}
  41. </td>
  42. <td>
  43. {{room.apartment}}
  44. </td>
  45. <td>
  46. {{room.builtUpArea}}
  47. </td>
  48. <td>
  49. {{room.unitPrice}}
  50. </td>
  51. <td>
  52. {{room.userName}}
  53. </td>
  54. <td>
  55. {{room.remark}}
  56. </td>
  57. <td class="text-right">
  58. <div class="btn-group">
  59. <button class="btn-white btn btn-xs" v-on:click="_openEditRoomModel(room)">修改</button>
  60. </div>
  61. <div class="btn-group">
  62. <button class="btn-white btn btn-xs" v-on:click="_openDelRoomModel(room)">删除</button>
  63. </div>
  64. </td>
  65. </tr>
  66. </tbody>
  67. <tfoot>
  68. <tr>
  69. <td colspan="7">
  70. <ul class="pagination float-right"></ul>
  71. </td>
  72. </tr>
  73. </tfoot>
  74. </table>
  75. <!-- 分页 -->
  76. <vc:create name="pagination"></vc:create>
  77. </div>
  78. </div>
  79. </div>
  80. </div>
  81. <!-- 删除员工权限 -->
  82. <vc:create name="editRoom"></vc:create>
  83. <vc:create name="deleteRoom"></vc:create>
  84. </div>