声脉桥梁云监控平台

index.vue 859B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <div class="dashboard-editor-container">
  3. <div>
  4. <img class="plat-pic" src="/static/touchwave.png" width="460">
  5. <p class="plat-tit">欢迎 <span>{{name}}</span> 使用声脉桥梁云监控平台</p>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. import { mapGetters } from 'vuex'
  11. export default {
  12. name: 'dashboard-admin',
  13. computed: {
  14. ...mapGetters([
  15. 'name'
  16. ])
  17. }
  18. }
  19. </script>
  20. <style rel="stylesheet/scss" lang="scss" scoped>
  21. .dashboard-editor-container {
  22. display: flex;
  23. align-items: center;
  24. justify-content: center;
  25. flex-direction: column;
  26. text-align: center;
  27. margin: 20px;
  28. height: 100%;
  29. padding: 15% 0;
  30. background: #fff;
  31. .plat-pic{
  32. margin: 40px auto 0;
  33. }
  34. .plat-tit{
  35. font-size: 34px;
  36. line-height: 40px;
  37. letter-spacing: 2px;
  38. span{
  39. color: #0f76c4;
  40. }
  41. }
  42. }
  43. </style>