|
|
|
@ -258,7 +258,8 @@ |
|
|
|
</div> |
|
|
|
<div class="footer-right"> |
|
|
|
<div style="font-size: 20px;text-align: center;">{{ $t("homeNewText.cc1") }}</div> |
|
|
|
<router-link class="jump_btn" to="/exchange">{{ $t("homeNewText.cc2") }}</router-link> |
|
|
|
<router-link class="jump_btn" to="/sign-up" v-if="!isLogin">{{ $t("homeNewText.hh34") }}</router-link> |
|
|
|
<router-link class="jump_btn" to="/exchange" v-else>{{ $t("homeNewText.cc2") }}</router-link> |
|
|
|
<img src="../assets/img/home/qrcode.png" alt="" style="width: 120px;height: 120px;"> |
|
|
|
<div style="font-size: 16px; color: #9c9c9c;margin-top: 12px;text-align: center;">{{ $t("homeNewText.cc3") }}</div> |
|
|
|
</div> |
|
|
|
@ -346,6 +347,9 @@ export default { |
|
|
|
}; |
|
|
|
}, |
|
|
|
computed: { |
|
|
|
isLogin() { |
|
|
|
return Boolean(localStorage.token); |
|
|
|
}, |
|
|
|
...mapState({ |
|
|
|
appConfig: "appConfig", |
|
|
|
}), |
|
|
|
|