HomeContent.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <script setup lang="ts">
  2. import { ref } from "vue";
  3. import Search from "./Search/index.vue";
  4. import { ArrowRightBold } from "@element-plus/icons-vue";
  5. const count = ref(0);
  6. </script>
  7. <template>
  8. <div class="home-content">
  9. <h1>您好,需要提供什么帮助?</h1>
  10. <Search />
  11. <h1>新手入门</h1>
  12. <section>
  13. <div class="card type1">
  14. <h2>
  15. 平台概览<el-icon><ArrowRightBold /></el-icon>
  16. </h2>
  17. <span class="content">TODO</span>
  18. </div>
  19. <div class="card">
  20. <h2>
  21. 平台概览<el-icon><ArrowRightBold /></el-icon>
  22. </h2>
  23. <span class="content">TODO</span>
  24. </div>
  25. </section>
  26. </div>
  27. </template>
  28. <style lang="scss" scoped>
  29. h2 {
  30. border: none;
  31. margin: 0;
  32. padding: 0;
  33. }
  34. .home-content {
  35. display: flex;
  36. flex-direction: column;
  37. align-items: center;
  38. section {
  39. display: flex;
  40. align-items: stretch;
  41. justify-content: center;
  42. width: 100%;
  43. gap: 20px;
  44. }
  45. .card {
  46. flex: 1;
  47. display: flex;
  48. flex-direction: column;
  49. align-items: stretch;
  50. gap: 8px;
  51. border-radius: 20px;
  52. padding: 32px;
  53. background: #f5f9ff;
  54. border: 1px solid #e2eeff;
  55. min-height: 240px;
  56. &.type1 {
  57. background-color: #f6fdff;
  58. border: 1px solid #e3f8f4;
  59. }
  60. h2 {
  61. display: flex;
  62. align-items: center;
  63. .el-icon {
  64. width: 24px;
  65. height: 24px;
  66. margin-left: 8px;
  67. color: #00000042;
  68. }
  69. }
  70. .content {
  71. font-size: 14px;
  72. font-weight: 400;
  73. }
  74. }
  75. }
  76. </style>