|
|
|
@ -5,41 +5,51 @@ |
|
|
|
|
<div class="use"> |
|
|
|
|
<h6>现在就使用智信云平台,开始实践教学</h6> |
|
|
|
|
<div class="btns"> |
|
|
|
|
<span class="btn1" @click="toTrial">预约演示</span> |
|
|
|
|
<span class="btn2" @click="toTrial">免费试用</span> |
|
|
|
|
<span class="btn1" |
|
|
|
|
@click="toTrial">预约演示</span> |
|
|
|
|
<span class="btn2" |
|
|
|
|
@click="toTrial">免费试用</span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="company"> |
|
|
|
|
<div class="left"> |
|
|
|
|
<div class="logo"> |
|
|
|
|
<img src="@/assets/img/zxy/logo-gray.png" alt=""> |
|
|
|
|
<img src="@/assets/img/zxy/logo-gray.png" |
|
|
|
|
alt=""> |
|
|
|
|
<span>联系我们,为您提供最新产品咨询与客服答疑</span> |
|
|
|
|
</div> |
|
|
|
|
<div class="texts"> |
|
|
|
|
<p class="line" style="margin-bottom: 10px"> |
|
|
|
|
<p class="line" |
|
|
|
|
style="margin-bottom: 10px"> |
|
|
|
|
<span class="label">联系我们</span> |
|
|
|
|
<span class="val">客服电话:0551-68112926  合作咨询:18019930142 刘经理</span> |
|
|
|
|
</p> |
|
|
|
|
<p class="line" style="margin: 0 0 20px 72px;"> |
|
|
|
|
<p class="line" |
|
|
|
|
style="margin: 0 0 20px 72px;"> |
|
|
|
|
<span class="val">客服邮箱:ahzxy@zhixinyunedu.com</span> |
|
|
|
|
</p> |
|
|
|
|
<p class="line"> |
|
|
|
|
<span class="label">友情链接</span> |
|
|
|
|
<span class="val"> |
|
|
|
|
<a href="http://www.zxyicloud.com/#/ChuanDa/66/leftmenu/0" target="_blank">智信云官网</a> |
|
|
|
|
<a href="http://www.zxyicloud.com/#/ChuanDa/66/leftmenu/0" |
|
|
|
|
target="_blank">智信云官网</a> |
|
|
|
|
 <em style="font-style: normal;color: #636F7C;">|</em>  |
|
|
|
|
<a href="http://cxhz.hep.com.cn/" target="_blank">协同育人</a> |
|
|
|
|
<a href="http://cxhz.hep.com.cn/" |
|
|
|
|
target="_blank">协同育人</a> |
|
|
|
|
</span> |
|
|
|
|
</p> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="qrcodes"> |
|
|
|
|
<div class="qrcode" style="margin-right: 16px"> |
|
|
|
|
<img src="@/assets/img/zxy/qrcode1.png" alt=""> |
|
|
|
|
<div class="qrcode" |
|
|
|
|
style="margin-right: 16px"> |
|
|
|
|
<img src="@/assets/img/zxy/qrcode1.png" |
|
|
|
|
alt=""> |
|
|
|
|
<p class="text">高校交流群</p> |
|
|
|
|
</div> |
|
|
|
|
<div class="qrcode"> |
|
|
|
|
<img src="@/assets/img/zxy/qrcode2.png" alt=""> |
|
|
|
|
<img src="@/assets/img/zxy/qrcode2.png" |
|
|
|
|
alt=""> |
|
|
|
|
<p class="text">扫一扫 关注我们</p> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -49,13 +59,16 @@ |
|
|
|
|
© Copyright 2022 智信云 皖ICP备2021016749号 |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
<div v-else class="footer"> |
|
|
|
|
<div class="info" v-if="isIndex"> |
|
|
|
|
<div v-else |
|
|
|
|
class="footer"> |
|
|
|
|
<div class="info" |
|
|
|
|
v-if="isIndex"> |
|
|
|
|
<span class="m-r-20">客服邮箱:service@huorantech.cn</span> |
|
|
|
|
</div> |
|
|
|
|
<div class="copyright"> |
|
|
|
|
<span v-if="isIndex">© Copyright 2021 Occupation Lab 职站</span> |
|
|
|
|
<a href="https://beian.miit.gov.cn/#/Integrated/index" target="_blank">粤ICP备20072679号</a> |
|
|
|
|
<a href="https://beian.miit.gov.cn/#/Integrated/index" |
|
|
|
|
target="_blank">粤ICP备20072679号</a> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -63,46 +76,47 @@ |
|
|
|
|
<script> |
|
|
|
|
import Setting from "@/setting"; |
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
isZxy: Setting.isZxy, |
|
|
|
|
isIndex: this.$route.path !== '/login' && Setting.whiteList.some(e => e === this.$route.path) // 官网3个页面才能显示邮箱和版权号 |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
mounted(){ |
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
|
isZxy: Setting.isZxy, |
|
|
|
|
isIndex: this.$route.path !== '/login' && Setting.whiteList.some(e => e === this.$route.path) // 官网3个页面才能显示邮箱和版权号 |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
mounted () { |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
// 免费试用 |
|
|
|
|
toTrial () { |
|
|
|
|
window.open('https://www.wjx.top/vm/wFCPCFp.aspx') |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
// 免费试用 |
|
|
|
|
toTrial() { |
|
|
|
|
window.open('https://www.wjx.top/vm/wFCPCFp.aspx') |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|
.footer{ |
|
|
|
|
.footer { |
|
|
|
|
min-width: 1280px; |
|
|
|
|
padding: 17px 0 9px; |
|
|
|
|
text-align: center; |
|
|
|
|
background-color: #0F1D2E; |
|
|
|
|
.info{ |
|
|
|
|
background-color: #0f1d2e; |
|
|
|
|
.info { |
|
|
|
|
margin-bottom: 7px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
line-height: 20px; |
|
|
|
|
color: #D7DFE7; |
|
|
|
|
color: #d7dfe7; |
|
|
|
|
} |
|
|
|
|
.copyright{ |
|
|
|
|
.copyright { |
|
|
|
|
font-size: 12px; |
|
|
|
|
text-align: center; |
|
|
|
|
line-height: 17px; |
|
|
|
|
span{ |
|
|
|
|
span { |
|
|
|
|
margin-right: 20px; |
|
|
|
|
color: #757F8A; |
|
|
|
|
color: #757f8a; |
|
|
|
|
} |
|
|
|
|
a{ |
|
|
|
|
color:#757F8A; |
|
|
|
|
a { |
|
|
|
|
color: #757f8a; |
|
|
|
|
font-size: 12px; |
|
|
|
|
&:hover{ |
|
|
|
|
&:hover { |
|
|
|
|
color: #c7c7c7; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -110,92 +124,92 @@ export default { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.use { |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
height: 242px; |
|
|
|
|
background: url(../../assets/img/zxy/begin-bg.png) 0 0/100% 100% no-repeat; |
|
|
|
|
h6 { |
|
|
|
|
margin-bottom: 25px; |
|
|
|
|
font-size: 40px; |
|
|
|
|
color: #fff; |
|
|
|
|
} |
|
|
|
|
.btns { |
|
|
|
|
display: flex; |
|
|
|
|
span { |
|
|
|
|
width: 96px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
line-height: 36px; |
|
|
|
|
text-align: center; |
|
|
|
|
border-radius: 6px; |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
.btn1 { |
|
|
|
|
margin-right: 16px; |
|
|
|
|
color: #fff; |
|
|
|
|
background: rgba(255,255,255,0.14); |
|
|
|
|
border: 1px solid #fff; |
|
|
|
|
flex-direction: column; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
height: 242px; |
|
|
|
|
background: url(../../assets/img/zxy/begin-bg.png) 0 0/100% 100% no-repeat; |
|
|
|
|
h6 { |
|
|
|
|
margin-bottom: 25px; |
|
|
|
|
font-size: 40px; |
|
|
|
|
color: #fff; |
|
|
|
|
} |
|
|
|
|
.btn2 { |
|
|
|
|
color: #007EFF; |
|
|
|
|
background-color: #fff; |
|
|
|
|
.btns { |
|
|
|
|
display: flex; |
|
|
|
|
span { |
|
|
|
|
width: 96px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
line-height: 36px; |
|
|
|
|
text-align: center; |
|
|
|
|
border-radius: 6px; |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
.btn1 { |
|
|
|
|
margin-right: 16px; |
|
|
|
|
color: #fff; |
|
|
|
|
background: rgba(255, 255, 255, 0.14); |
|
|
|
|
border: 1px solid #fff; |
|
|
|
|
} |
|
|
|
|
.btn2 { |
|
|
|
|
color: #007eff; |
|
|
|
|
background-color: #fff; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.company { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
padding: 36px 0 14px; |
|
|
|
|
background-color: #0F1D2E; |
|
|
|
|
.logo { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
margin-bottom: 18px; |
|
|
|
|
span { |
|
|
|
|
padding-left: 14px; |
|
|
|
|
margin-left: 18px; |
|
|
|
|
font-size: 16px; |
|
|
|
|
color: #9AACBE; |
|
|
|
|
border-left: 1px solid #283545; |
|
|
|
|
padding: 36px 0 14px; |
|
|
|
|
background-color: #0f1d2e; |
|
|
|
|
.logo { |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
margin-bottom: 18px; |
|
|
|
|
span { |
|
|
|
|
padding-left: 14px; |
|
|
|
|
margin-left: 18px; |
|
|
|
|
font-size: 16px; |
|
|
|
|
color: #9aacbe; |
|
|
|
|
border-left: 1px solid #283545; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.left { |
|
|
|
|
margin-right: 160px; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
.line { |
|
|
|
|
display: flex; |
|
|
|
|
font-size: 13px; |
|
|
|
|
.left { |
|
|
|
|
margin-right: 160px; |
|
|
|
|
} |
|
|
|
|
.label { |
|
|
|
|
margin-right: 20px; |
|
|
|
|
color: #636F7C; |
|
|
|
|
.texts { |
|
|
|
|
.line { |
|
|
|
|
display: flex; |
|
|
|
|
font-size: 13px; |
|
|
|
|
} |
|
|
|
|
.label { |
|
|
|
|
margin-right: 20px; |
|
|
|
|
color: #636f7c; |
|
|
|
|
} |
|
|
|
|
.val { |
|
|
|
|
color: #d6dee8; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.val { |
|
|
|
|
color: #D6DEE8; |
|
|
|
|
.qrcodes { |
|
|
|
|
display: inline-flex; |
|
|
|
|
margin-top: 20px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.qrcodes { |
|
|
|
|
display: inline-flex; |
|
|
|
|
margin-top: 20px; |
|
|
|
|
} |
|
|
|
|
.qrcode { |
|
|
|
|
text-align: center; |
|
|
|
|
.text { |
|
|
|
|
margin-top: 10px; |
|
|
|
|
font-size: 12px; |
|
|
|
|
color: #757F8A; |
|
|
|
|
.qrcode { |
|
|
|
|
text-align: center; |
|
|
|
|
.text { |
|
|
|
|
margin-top: 10px; |
|
|
|
|
font-size: 12px; |
|
|
|
|
color: #757f8a; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.zxy-footer { |
|
|
|
|
line-height: 34px; |
|
|
|
|
text-align: center; |
|
|
|
|
font-size: 12px; |
|
|
|
|
color: #757F8A; |
|
|
|
|
border-top: 1px solid rgba(255, 255, 255, 0.05); |
|
|
|
|
background-color: #0F1D2E; |
|
|
|
|
line-height: 34px; |
|
|
|
|
text-align: center; |
|
|
|
|
font-size: 12px; |
|
|
|
|
color: #757f8a; |
|
|
|
|
border-top: 1px solid rgba(255, 255, 255, 0.05); |
|
|
|
|
background-color: #0f1d2e; |
|
|
|
|
} |
|
|
|
|
</style> |