|
|
@ -1,6 +1,11 @@ |
|
|
<template> |
|
|
<template> |
|
|
<!-- colto-section --> |
|
|
<!-- colto-section --> |
|
|
<footer class="footer" @click="toggleMenu($event,2)"> |
|
|
<footer class="footer" @click="toggleMenu($event,2)"> |
|
|
|
|
|
<!-- customer service zone --> |
|
|
|
|
|
<div class="cszone"> |
|
|
|
|
|
<a href="javascript:void(0);" @click="scbox()"><img src="../assets/img/cs_w.svg"></a> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="content"> |
|
|
<div class="content"> |
|
|
<div class="footer-upper-section"> |
|
|
<div class="footer-upper-section"> |
|
|
<!-- logo --> |
|
|
<!-- logo --> |
|
|
@ -263,6 +268,14 @@ |
|
|
<img src="@/assets/img/home/btcex1.png" alt="" style="width: 120px;height: 120px;"> |
|
|
<img src="@/assets/img/home/btcex1.png" alt="" style="width: 120px;height: 120px;"> |
|
|
<div style="font-size: 16px; color: #9c9c9c;margin-top: 12px;">{{ $t("homeNewText.bb40",{name:'BTCEXCOIN'}) }}</div> |
|
|
<div style="font-size: 16px; color: #9c9c9c;margin-top: 12px;">{{ $t("homeNewText.bb40",{name:'BTCEXCOIN'}) }}</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- this customer service popup --> |
|
|
|
|
|
<div class="cspopup" :class='{"hidden":ispopup?"":"none"}'> |
|
|
|
|
|
<a href="javascript:void(0);" class="close_btn" @click="closebox();">x</a> |
|
|
|
|
|
<iframe width="100%" height="100%" class="my-modal-body" src="https://cs.btcaholic.com/chat/?toid=2" frameborder="0"></iframe> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</footer> |
|
|
</footer> |
|
|
</template> |
|
|
</template> |
|
|
@ -287,6 +300,7 @@ export default { |
|
|
{ src: "https://www.rsncoin.com/static/flag/vk.png" }, |
|
|
{ src: "https://www.rsncoin.com/static/flag/vk.png" }, |
|
|
{ src: "https://www.rsncoin.com/static/flag/youtube.jpg" }, |
|
|
{ src: "https://www.rsncoin.com/static/flag/youtube.jpg" }, |
|
|
], |
|
|
], |
|
|
|
|
|
ispopup:false, // customer service box |
|
|
langList: [ |
|
|
langList: [ |
|
|
// { |
|
|
// { |
|
|
// value: "cn", // zh-CN |
|
|
// value: "cn", // zh-CN |
|
|
@ -400,6 +414,7 @@ export default { |
|
|
}) |
|
|
}) |
|
|
.catch((err) => {}); |
|
|
.catch((err) => {}); |
|
|
}, |
|
|
}, |
|
|
|
|
|
// |
|
|
getServiceLink() { |
|
|
getServiceLink() { |
|
|
College.getServiceList() |
|
|
College.getServiceList() |
|
|
.then((list) => { |
|
|
.then((list) => { |
|
|
@ -419,6 +434,19 @@ export default { |
|
|
}) |
|
|
}) |
|
|
.catch((err) => {}); |
|
|
.catch((err) => {}); |
|
|
}, |
|
|
}, |
|
|
|
|
|
// scbox |
|
|
|
|
|
scbox(e){ |
|
|
|
|
|
this.ispopup = ! this.ispopup |
|
|
|
|
|
console.log("dd",this.ispopup) |
|
|
|
|
|
}, |
|
|
|
|
|
// close |
|
|
|
|
|
closebox(){ |
|
|
|
|
|
if(this.ispopup){ |
|
|
|
|
|
this.ispopup = false |
|
|
|
|
|
} |
|
|
|
|
|
this.ispopup =false |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
created() { |
|
|
created() { |
|
|
this.getCollegeLinks(); |
|
|
this.getCollegeLinks(); |
|
|
@ -432,6 +460,22 @@ export default { |
|
|
.footer { |
|
|
.footer { |
|
|
background-color: #121212; |
|
|
background-color: #121212; |
|
|
border-top: none; |
|
|
border-top: none; |
|
|
|
|
|
position:relative; |
|
|
|
|
|
|
|
|
|
|
|
.cszone{ |
|
|
|
|
|
width:60px; |
|
|
|
|
|
position:fixed; |
|
|
|
|
|
bottom:10%; |
|
|
|
|
|
right:26px; |
|
|
|
|
|
z-index:999; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.cszone img{ |
|
|
|
|
|
text-align:center; |
|
|
|
|
|
width:48px; |
|
|
|
|
|
height:48px; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.content{ |
|
|
.content{ |
|
|
display: flex; |
|
|
display: flex; |
|
|
@ -564,6 +608,27 @@ export default { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.cspopup{ |
|
|
|
|
|
.close_btn{ |
|
|
|
|
|
// width:20px; |
|
|
|
|
|
height:20px; |
|
|
|
|
|
font-size:18px; |
|
|
|
|
|
line-height:20px; |
|
|
|
|
|
text-align:right; |
|
|
|
|
|
display:block; |
|
|
|
|
|
} |
|
|
|
|
|
position:fixed; |
|
|
|
|
|
top:40%; |
|
|
|
|
|
left:35%; |
|
|
|
|
|
width:560px; |
|
|
|
|
|
height:560px; |
|
|
|
|
|
z-index:999; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.hidden{ |
|
|
|
|
|
display:none; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.serviceText{ |
|
|
.serviceText{ |
|
|
@ -629,4 +694,6 @@ export default { |
|
|
display: none; |
|
|
display: none; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</style> |
|
|
</style> |