planEditer.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <div class="plan-editer">
  3. <div class="top-bar">
  4. <topToolBar></topToolBar>
  5. </div>
  6. <div class="contents">
  7. <div class="left-bar">
  8. <leftToolBar></leftToolBar>
  9. </div>
  10. <div class="base-plan-editer">
  11. <basePlanEditer></basePlanEditer>
  12. </div>
  13. <div class="right-bar">
  14. <rightPropertyBar></rightPropertyBar>
  15. </div>
  16. </div>
  17. <div class="bottom-bar">
  18. <bottomToolBar />
  19. </div>
  20. </div>
  21. </template>
  22. <script>
  23. import leftToolBar from "./leftToolBar";
  24. import rightPropertyBar from "./rightPropertyBar";
  25. import basePlanEditer from "./basePlanEditer";
  26. import topToolBar from "./topToolBar";
  27. import bottomToolBar from "./bottomToolBar";
  28. export default {
  29. components: { leftToolBar, rightPropertyBar, topToolBar, basePlanEditer, bottomToolBar },
  30. data() {
  31. return {};
  32. },
  33. methods: {},
  34. };
  35. </script>
  36. <style lang="less">
  37. .plan-editer {
  38. width: 100%;
  39. height: 100%;
  40. position: relative;
  41. .top-bar {
  42. width: 100%;
  43. z-index: 99;
  44. }
  45. .contents {
  46. width: 100%;
  47. height: calc(~"100% - 48px");
  48. display: flex;
  49. justify-content: flex-start;
  50. .right-bar {
  51. // width: 240px;
  52. height: 100%;
  53. }
  54. .base-plan-editer {
  55. flex: 1;
  56. height: 100%;
  57. }
  58. }
  59. .bottom-bar {
  60. position: absolute;
  61. // width: 100%;
  62. // right: 0;
  63. bottom: 20px;
  64. right: 250px;
  65. }
  66. }
  67. </style>