index.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <div class="app-container home">
  3. <CardBox1></CardBox1>
  4. <FastMenuBox2></FastMenuBox2>
  5. <SummeryDataBox3></SummeryDataBox3>
  6. <CountMoneyEchartsBox4></CountMoneyEchartsBox4>
  7. <SalesGuessEchartsBox5></SalesGuessEchartsBox5>
  8. </div>
  9. </template>
  10. <script setup name="Index" lang="ts">
  11. import CardBox1 from './indexComponts/CardBox1.vue'
  12. import FastMenuBox2 from './indexComponts/FastMenuBox2.vue'
  13. import SummeryDataBox3 from './indexComponts/SummeryDataBox3.vue'
  14. import CountMoneyEchartsBox4 from './indexComponts/CountMoneyEchartsBox4.vue'
  15. import SalesGuessEchartsBox5 from './indexComponts/SalesGuessEchartsBox5.vue'
  16. onMounted(() => {
  17. });
  18. </script>
  19. <style scoped lang="scss">
  20. .home {
  21. //background: #FFF;
  22. width: 100%;
  23. blockquote {
  24. padding: 10px 20px;
  25. margin: 0 0 20px;
  26. font-size: 17.5px;
  27. border-left: 5px solid #eee;
  28. }
  29. hr {
  30. margin-top: 20px;
  31. margin-bottom: 20px;
  32. border: 0;
  33. border-top: 1px solid #eee;
  34. }
  35. .col-item {
  36. margin-bottom: 20px;
  37. }
  38. ul {
  39. padding: 0;
  40. margin: 0;
  41. }
  42. font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  43. font-size: 13px;
  44. color: #676a6c;
  45. overflow-x: hidden;
  46. ul {
  47. list-style-type: none;
  48. }
  49. h4 {
  50. margin-top: 0px;
  51. }
  52. h2 {
  53. margin-top: 10px;
  54. font-size: 26px;
  55. font-weight: 100;
  56. }
  57. p {
  58. margin-top: 10px;
  59. b {
  60. font-weight: 700;
  61. }
  62. }
  63. .update-log {
  64. ol {
  65. display: block;
  66. list-style-type: decimal;
  67. margin-block-start: 1em;
  68. margin-block-end: 1em;
  69. margin-inline-start: 0;
  70. margin-inline-end: 0;
  71. padding-inline-start: 40px;
  72. }
  73. }
  74. }
  75. </style>