|
|
|
@ -22,13 +22,13 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tabbar-fixed-box__line"></div>
|
|
|
|
|
<div
|
|
|
|
|
@mouseenter="customerHover = true"
|
|
|
|
|
@mouseleave="customerHover = false"
|
|
|
|
|
@click="onConcatCustomer"
|
|
|
|
|
@mouseenter="messageHover = true"
|
|
|
|
|
@mouseleave="messageHover = false"
|
|
|
|
|
@click="onOpenMessagePage"
|
|
|
|
|
class="tabbar-fixed-box__common flex flex-middle"
|
|
|
|
|
>
|
|
|
|
|
<span v-show="customerHover">消息通知</span>
|
|
|
|
|
<img v-show="!customerHover" src="~/assets/img/home/icon-message.png" />
|
|
|
|
|
<span v-show="messageHover">消息通知</span>
|
|
|
|
|
<img v-show="!messageHover" src="~/assets/img/home/icon-message.png" />
|
|
|
|
|
</div>
|
|
|
|
|
<div v-show="showToTop">
|
|
|
|
|
<div class="tabbar-fixed-box__line"></div>
|
|
|
|
@ -60,7 +60,7 @@ export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
appHover: false,
|
|
|
|
|
customerHover: false,
|
|
|
|
|
messageHover: false,
|
|
|
|
|
totopHover: false,
|
|
|
|
|
tabBarVisible: false,
|
|
|
|
|
};
|
|
|
|
@ -80,10 +80,11 @@ export default {
|
|
|
|
|
this.tabBarVisible = true;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onConcatCustomer() {
|
|
|
|
|
onOpenMessagePage() {
|
|
|
|
|
if (!this.$isLoginValidate()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
window.open(`${location.origin}/account/message`);
|
|
|
|
|
},
|
|
|
|
|
toPageTop() {
|
|
|
|
|
document.querySelector("body").scrollIntoView({ behavior: "smooth" });
|
|
|
|
@ -98,6 +99,7 @@ export default {
|
|
|
|
|
left: 50%;
|
|
|
|
|
top: 568px;
|
|
|
|
|
margin-left: 630px;
|
|
|
|
|
border: 1px solid #f8f8f8;
|
|
|
|
|
&--change {
|
|
|
|
|
margin-left: 390px;
|
|
|
|
|
}
|
|
|
|
|