PastReview.vue 805 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <div class="container">
  3. <div class="left-box"></div>
  4. <div class="right-box"></div>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. components: {
  10. },
  11. data() {
  12. return {
  13. }
  14. },
  15. methods: {
  16. },
  17. mounted() {
  18. }
  19. }
  20. </script>
  21. <style scoped>
  22. html, body, #app {
  23. height: 100% !important;
  24. user-select: none;
  25. }
  26. .main-content {
  27. background:rgb(248,248,248) !important;
  28. }
  29. .container {
  30. width: 1200px;
  31. margin: 100px auto;
  32. display:flex;
  33. flex-direction:row;
  34. justify-content:space-between;
  35. }
  36. .container .left-box {
  37. width:25%;
  38. height:600px;
  39. background:#fff;
  40. }
  41. .container .right-box {
  42. width:73%;
  43. height:600px;
  44. background:#fff;
  45. }
  46. .center-col {
  47. }
  48. </style>