footerMobile.vue 493 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div class="footer">
  3. <span>已有账户?</span>&nbsp;&nbsp;
  4. <a :href="returnLogin">立即登录</a>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'footerMobile',
  10. data () {
  11. return {
  12. returnLogin: ''
  13. }
  14. },
  15. mounted () {
  16. this.returnLogin = window.location.origin + window.location.search
  17. }
  18. }
  19. </script>
  20. <style scoped type="text/scss" lang="scss">
  21. .footer{
  22. text-align: center;
  23. line-height: 1.7rem;
  24. color:#999;
  25. }
  26. </style>