index.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <template>
  2. <div class="app-container home">
  3. <el-row :gutter="20">
  4. <el-col :sm="24" :lg="12" style="padding-left: 20px">
  5. <h2>浪潮智能信发平台</h2>
  6. <p><b>当前版本:</b> <span>v4.1.0</span></p>
  7. </el-col>
  8. </el-row>
  9. </div>
  10. </template>
  11. <script setup name="Index" lang="ts">
  12. const goTarget = (url: string) => {
  13. window.open(url, '__blank');
  14. };
  15. </script>
  16. <style scoped lang="scss">
  17. .home {
  18. blockquote {
  19. padding: 10px 20px;
  20. margin: 0 0 20px;
  21. font-size: 17.5px;
  22. border-left: 5px solid #eee;
  23. }
  24. hr {
  25. margin-top: 20px;
  26. margin-bottom: 20px;
  27. border: 0;
  28. border-top: 1px solid #eee;
  29. }
  30. .col-item {
  31. margin-bottom: 20px;
  32. }
  33. ul {
  34. padding: 0;
  35. margin: 0;
  36. }
  37. font-family: 'open sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  38. font-size: 13px;
  39. color: #676a6c;
  40. overflow-x: hidden;
  41. ul {
  42. list-style-type: none;
  43. }
  44. h4 {
  45. margin-top: 0px;
  46. }
  47. h2 {
  48. margin-top: 10px;
  49. font-size: 26px;
  50. font-weight: 100;
  51. }
  52. p {
  53. margin-top: 10px;
  54. b {
  55. font-weight: 700;
  56. }
  57. }
  58. .update-log {
  59. ol {
  60. display: block;
  61. list-style-type: decimal;
  62. margin-block-start: 1em;
  63. margin-block-end: 1em;
  64. margin-inline-start: 0;
  65. margin-inline-end: 0;
  66. padding-inline-start: 40px;
  67. }
  68. }
  69. }
  70. </style>