1
0

index.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <template >
  2. <div style="padding: 0px 35px; display: flex; justify-content: space-between"
  3. >
  4. <div>
  5. <border-panel
  6. height="360px"
  7. style="margin-bottom: 6px"
  8. title="建筑信息"
  9. >
  10. </border-panel>
  11. <border-panel
  12. height="310px"
  13. style="margin-bottom: 6px"
  14. title="管理单位"
  15. >
  16. </border-panel>
  17. <border-panel height="270px" title="风险等级">
  18. </border-panel>
  19. </div>
  20. <div style="display: flex; flex-direction: column;">
  21. <div style="height: 682px;"></div>
  22. <div style="display: flex; justify-content: space-between;">
  23. <border-panel
  24. height="270px"
  25. width="468px"
  26. title="历史火宅"
  27. :headerType="2"
  28. style="margin-right: 8px;"
  29. >
  30. </border-panel>
  31. <border-panel
  32. height="270px"
  33. width="468px"
  34. title="隐患"
  35. :headerType="2"
  36. >
  37. </border-panel>
  38. </div>
  39. </div>
  40. <div>
  41. <border-panel
  42. height="521px"
  43. style="margin-bottom: 6px"
  44. title="智慧消防"
  45. >
  46. </border-panel>
  47. <border-panel
  48. height="421px"
  49. style="margin-bottom: 6px"
  50. title="自查、监督、维保"
  51. >
  52. </border-panel>
  53. </div>
  54. </div>
  55. </template>
  56. <script>
  57. export default {
  58. name: 'BasicInfoPage'
  59. }
  60. </script>
  61. <style scoped lang='less'>
  62. </style>