headerMobile.vue 776 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="header">
  3. <!--<h3><img :src="loginStyle.logoUrl ? loginStyle.logoUrl : '/img/logo/uas.png'" alt="">账户中心</h3>-->
  4. <h3><img src="/img/zc.png" alt=""></h3>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'headerMobile',
  10. computed: {
  11. loginStyle () {
  12. return this.$store.state.login.loginStyle.data.content ? this.$store.state.login.loginStyle.data.content : ''
  13. }
  14. }
  15. }
  16. </script>
  17. <style scoped type="text/scss" lang="scss">
  18. .header{
  19. margin: 0 auto;
  20. overflow: hidden;
  21. text-align: center;
  22. line-height: 1.5rem;
  23. h3{
  24. margin:0;
  25. color:#333;
  26. font-weight: bold;
  27. font-size:.4rem;
  28. }
  29. img{
  30. width:1.4rem;
  31. height:.38rem;
  32. vertical-align: middle;
  33. margin-right:.2rem;
  34. }
  35. }
  36. </style>