|
|
|
@ -596,7 +596,9 @@ |
|
|
|
<div class="d-flex"> |
|
|
|
<img src="../../../static/images/big-icon-4.png" alt="" width="50" height="50"> |
|
|
|
<div style="margin-left:30px;"> |
|
|
|
<div style="font-size: 20px;margin-bottom: 0.5rem;">{{ $t("xtzcoins3.a50") }}</div><div style="color: #6A6E74;margin-bottom: 0.5rem;">{{ $t("xtzcoins3.a51") }}</div><div style="color: #F7D558;">{{ $t("xtzcoins3.a53") }}</div> |
|
|
|
<div style="font-size: 20px;margin-bottom: 0.5rem;">{{ $t("xtzcoins3.a50") }}</div> |
|
|
|
<div style="color: #6A6E74;margin-bottom: 0.5rem;">{{ $t("xtzcoins3.a51") }}</div> |
|
|
|
<el-button type="text" style="color: #F7D558;padding: 0px;outline: none;" @click="getEmail">{{ $t("xtzcoins3.a53") }}</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<router-link class="d-flex" to="/college/list/18"> |
|
|
|
@ -1104,6 +1106,7 @@ import Home from "@/api/home"; |
|
|
|
import Socket from "@/api/server/Socket.js"; |
|
|
|
import College from "@/api/college"; |
|
|
|
import Member from "@/api/member"; |
|
|
|
import ContactUs from "@/api/contactUs"; |
|
|
|
import * as d3 from "d3"; |
|
|
|
import priceLine from "../market/price-line"; |
|
|
|
// Vue.use(VueAwesomeSwiper); |
|
|
|
@ -1199,6 +1202,7 @@ export default { |
|
|
|
line: "", |
|
|
|
itemList: [], |
|
|
|
cid: '', |
|
|
|
email: '', |
|
|
|
}; |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
@ -1424,10 +1428,29 @@ export default { |
|
|
|
routerLink(e){ |
|
|
|
this.cid = e; |
|
|
|
this.getArticleListItem(); |
|
|
|
}, |
|
|
|
getEmial() { |
|
|
|
ContactUs.contact() |
|
|
|
.then((data) => { |
|
|
|
this.email = data.contact; |
|
|
|
}) |
|
|
|
.catch((err) => {}); |
|
|
|
}, |
|
|
|
getEmail(){ |
|
|
|
this.$alert(this.email, this.$t("common.email"), { |
|
|
|
confirmButtonText: '确定', |
|
|
|
callback: action => { |
|
|
|
// this.$message({ |
|
|
|
// type: 'info', |
|
|
|
// message: `action: ${ action }` |
|
|
|
// }); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|
created() { |
|
|
|
this.indexList(); |
|
|
|
this.getEmial(); |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
this.article(); |
|
|
|
|