| 12345678910111213141516171819202122232425262728 |
- <template>
- <div class="footer">
- <span>已有账户?</span>
- <a :href="returnLogin">立即登录</a>
- </div>
- </template>
- <script>
- export default {
- name: 'footerMobile',
- data () {
- return {
- returnLogin: ''
- }
- },
- mounted () {
- this.returnLogin = window.location.origin + window.location.search
- }
- }
- </script>
- <style scoped type="text/scss" lang="scss">
- .footer{
- text-align: center;
- line-height: 1.7rem;
- color:#999;
- }
- </style>
|