index.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <div class="app-container home">
  3. <el-row :gutter="20"> </el-row>
  4. <el-row :gutter="20"> </el-row>
  5. <el-divider />
  6. <el-row :gutter="20">
  7. <el-col :xs="24" :sm="24" :md="12" :lg="8"> </el-col>
  8. <el-col :xs="24" :sm="24" :md="12" :lg="8">
  9. <el-card class="update-log">
  10. <div slot="header" class="clearfix">
  11. <span>更新日志</span>
  12. </div>
  13. <el-collapse accordion> 123123 </el-collapse>
  14. </el-card>
  15. </el-col>
  16. <el-col :xs="24" :sm="24" :md="12" :lg="8">
  17. <el-card class="update-log">
  18. <div slot="header" class="clearfix">
  19. <span>捐赠支持</span>
  20. </div>
  21. <div class="body"></div>
  22. </el-card>
  23. </el-col>
  24. </el-row>
  25. </div>
  26. </template>
  27. <script>
  28. export default {
  29. name: "Index",
  30. data() {
  31. return {
  32. // 版本号
  33. version: "3.8.5",
  34. };
  35. },
  36. methods: {
  37. goTarget(href) {
  38. window.open(href, "_blank");
  39. },
  40. },
  41. };
  42. </script>
  43. <style scoped lang="scss">
  44. .home {
  45. blockquote {
  46. padding: 10px 20px;
  47. margin: 0 0 20px;
  48. font-size: 17.5px;
  49. /* border-left: 5px solid #eee; */
  50. }
  51. hr {
  52. margin-top: 20px;
  53. margin-bottom: 20px;
  54. border: 0;
  55. border-top: 1px solid #eee;
  56. }
  57. .col-item {
  58. margin-bottom: 20px;
  59. }
  60. ul {
  61. padding: 0;
  62. margin: 0;
  63. }
  64. font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  65. font-size: 13px;
  66. color: #676a6c;
  67. overflow-x: hidden;
  68. ul {
  69. list-style-type: none;
  70. }
  71. h4 {
  72. margin-top: 0px;
  73. }
  74. h2 {
  75. margin-top: 10px;
  76. font-size: 26px;
  77. font-weight: 100;
  78. }
  79. p {
  80. margin-top: 10px;
  81. b {
  82. font-weight: 700;
  83. }
  84. }
  85. .update-log {
  86. ol {
  87. display: block;
  88. list-style-type: decimal;
  89. margin-block-start: 1em;
  90. margin-block-end: 1em;
  91. margin-inline-start: 0;
  92. margin-inline-end: 0;
  93. padding-inline-start: 40px;
  94. }
  95. }
  96. }
  97. </style>