应用层PC端前端服务

index.vue 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <div class="app-container home">
  3. <el-row :gutter="20">
  4. <el-col :sm="24" :lg="24">
  5. 智慧仲裁
  6. </el-col>
  7. </el-row>
  8. <el-row :gutter="20">
  9. <el-col :sm="24" :lg="12" style="padding-left: 20px">
  10. <h2>智慧仲裁后台管理框架</h2>
  11. </el-col>
  12. </el-row>
  13. <el-divider />
  14. </div>
  15. </template>
  16. <script>
  17. export default {
  18. name: "Index",
  19. data() {
  20. return {
  21. };
  22. },
  23. methods: {
  24. goTarget(href) {
  25. window.open(href, "_blank");
  26. }
  27. }
  28. };
  29. </script>
  30. <style scoped lang="scss">
  31. .home {
  32. blockquote {
  33. padding: 10px 20px;
  34. margin: 0 0 20px;
  35. font-size: 17.5px;
  36. border-left: 5px solid #eee;
  37. }
  38. hr {
  39. margin-top: 20px;
  40. margin-bottom: 20px;
  41. border: 0;
  42. border-top: 1px solid #eee;
  43. }
  44. .col-item {
  45. margin-bottom: 20px;
  46. }
  47. ul {
  48. padding: 0;
  49. margin: 0;
  50. }
  51. font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  52. font-size: 13px;
  53. color: #676a6c;
  54. overflow-x: hidden;
  55. ul {
  56. list-style-type: none;
  57. }
  58. h4 {
  59. margin-top: 0px;
  60. }
  61. h2 {
  62. margin-top: 10px;
  63. font-size: 26px;
  64. font-weight: 100;
  65. }
  66. p {
  67. margin-top: 10px;
  68. b {
  69. font-weight: 700;
  70. }
  71. }
  72. .update-log {
  73. ol {
  74. display: block;
  75. list-style-type: decimal;
  76. margin-block-start: 1em;
  77. margin-block-end: 1em;
  78. margin-inline-start: 0;
  79. margin-inline-end: 0;
  80. padding-inline-start: 40px;
  81. }
  82. }
  83. }
  84. </style>