优化登录和注册界面

This commit is contained in:
季圣华
2022-07-21 00:09:17 +08:00
parent 7186017965
commit e729fb5378
2 changed files with 48 additions and 6 deletions

View File

@@ -48,7 +48,7 @@
<a-col>
© 2015-2030 {{systemTitle}} - Powered By
<a style="color:#00458a;" :href="systemUrl" target="_blank">官方网站</a>
<span v-if="showWeixinSpan()" class="weixin" @mouseover="showWeixin" @click="hideWeixin">微信小程序</span>
<span v-if="showWeixinSpan()" class="weixin" @mouseover="showWeixin" @click="changeWeixinStatus">微信小程序</span>
</a-col>
</a-row>
</div>
@@ -304,9 +304,13 @@
showWeixin() {
this.showWeixinFlag = true
},
hideWeixin() {
this.showWeixinFlag = false
}
changeWeixinStatus() {
if(this.showWeixinFlag) {
this.showWeixinFlag = false
} else {
this.showWeixinFlag = true
}
},
}
}
</script>