parent
10528a725b
commit
e13cbdabec
@ -1,7 +1,17 @@ |
||||
NODE_ENV = production |
||||
|
||||
# 测试环境配置 |
||||
ENV = 'staging' |
||||
ENV = 'development' |
||||
|
||||
# KeySaas测试云平台/开发环境 |
||||
VUE_APP_BASE_API = '/prod-api' |
||||
|
||||
|
||||
VUE_APP_BASE_TARGET = 'http://192.168.0.229:9999' |
||||
# VUE_APP_BASE_TARGET = 'http://192.168.0.129:9999' |
||||
# VUE_APP_BASE_TARGET = 'http://172.16.36.180:9999' |
||||
# VUE_APP_BASE_TARGET = 'http://172.16.36.176:9998' |
||||
|
||||
# VUE_APP_BASE_TARGET = 'https://www.keyitest.cn/test-api' |
||||
# VUE_APP_BASE_TARGET = 'http://www.bjkeyware.com/test-api' |
||||
|
||||
# KeySaas测试云平台/测试环境 |
||||
VUE_APP_BASE_API = '/stage-api' |
||||
# 路由懒加载 |
||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true |
@ -0,0 +1,148 @@ |
||||
<template> |
||||
<!-- 尾部 --> |
||||
<div> |
||||
<div style="background: #0a1f33; color: #ffffff; height: 270px; margin-top: -1px"> |
||||
<div style="display: flex; width: 1200px; margin: 0 auto; height: 180px; justify-content: space-between"> |
||||
<div style="line-height: 180px"> |
||||
<el-link :underline="false" @click="openurl('/')">首页</el-link> |
||||
<el-divider direction="vertical"></el-divider> |
||||
<el-link :underline="false" @click="openurl('/market')">工具服务</el-link> |
||||
<el-divider direction="vertical"></el-divider> |
||||
<el-link :underline="false" @click="openurl('/crowdsourcing')">众包服务</el-link> |
||||
<el-divider direction="vertical"></el-divider> |
||||
<!-- <el-link :underline="false" @click="stepurl('http://train.keyitest.cn/')">培训学院</el-link> --> |
||||
<el-link :underline="false" @click="openurl('/ability')">人才服务</el-link> |
||||
<el-divider direction="vertical"></el-divider> |
||||
<el-link :underline="false" @click="openurl('/college')">培训服务</el-link> |
||||
<el-divider direction="vertical"></el-divider> |
||||
<!-- <el-link :underline="false" @click="openurl('/news')">行业动态</el-link> |
||||
<el-divider direction="vertical"></el-divider> |
||||
<el-link :underline="false" @click="openurl('/employ')">人员聘用</el-link> |
||||
<el-divider direction="vertical"></el-divider> |
||||
<el-link :underline="false" @click="openurl('/cooperation')">合作伙伴</el-link> |
||||
<el-divider direction="vertical"></el-divider> --> |
||||
<el-link :underline="false" @click="openurl('/about')">关于我们</el-link> |
||||
<!-- <el-divider direction="vertical"></el-divider> |
||||
<el-link :underline="false" @click="openurl('/aboutus/joinus')">加入我们</el-link> |
||||
<el-divider direction="vertical"></el-divider> |
||||
<el-link :underline="false" @click="openurl('/home')">招聘信息</el-link> --> |
||||
</div> |
||||
<div class="vider"> |
||||
<el-divider direction="vertical"></el-divider> |
||||
</div> |
||||
<div style="display: flex; font-size: 14px; cursor: pointer"> |
||||
<img style="width: 100px; height: 100px; margin-top: 40px; margin-right: 35px" |
||||
src="/assets/homepage/xcx.jpg" alt="" /> |
||||
<img style="width: 100px; height: 100px; margin-top: 40px" src="/assets/home/erweima.jpg" alt="" /> |
||||
<div style=" |
||||
margin-left: 25px; |
||||
color: #bfbfbf; |
||||
display: flex; |
||||
flex-direction: column; |
||||
justify-content: center; |
||||
"> |
||||
<p>联系我们</p> |
||||
<div style="display: flex; align-items: center; margin: 10px 0"> |
||||
<p>咨询热线:010-80750213</p> |
||||
</div> |
||||
<div style="display: flex; align-items: center"> |
||||
<p>邮箱:keyware@keyware.com.cn</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<el-divider></el-divider> |
||||
<div class="bottoaxwa" style="text-align: center; color: #b3b3b3; opacity: 0.7; margin-top: 30px"> |
||||
<img src="/assets/home/plice.png" style="width: 20px; height: 20px" alt="" /> |
||||
<a target="_blank" style="margin-right: 10px" |
||||
href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11011402054123">京公网安备11011402054123号</a> |
||||
<a target="_blank" href="https://beian.miit.gov.cn">京ICP备18018633号-3</a> |
||||
</div> |
||||
<img class="footer" id="gotoTop" @click="gotoTop" src="/assets/home/gtop.png" alt="" /> |
||||
</div> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import $ from 'jquery' |
||||
export default { |
||||
data() { |
||||
return {} |
||||
}, |
||||
mounted() { |
||||
// this.gotoTop(600) |
||||
}, |
||||
methods: { |
||||
openurl(url) { |
||||
// console.log(url) |
||||
// window.open(url,'_blank') |
||||
this.$router.push(url) |
||||
}, |
||||
stepurl(url) { |
||||
window.open(url, '_blank') |
||||
}, |
||||
gotoTop() { |
||||
let scoHeight = document.documentElement.scrollTop |
||||
// console.log(scoHeight); |
||||
// while (scoHeight > 0) { |
||||
// window.requestAnimationFrame(() => { |
||||
// document.documentElement.scrollTop = scoHeight - 10; |
||||
// }) |
||||
// } |
||||
|
||||
}, |
||||
}, |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
* { |
||||
margin: 0; |
||||
padding: 0; |
||||
} |
||||
|
||||
.el-link.el-link--default { |
||||
font-size: 14px; |
||||
color: #b3b3b3; |
||||
} |
||||
|
||||
.el-divider { |
||||
background-color: #b3b3b3; |
||||
margin: 0 20px; |
||||
background: #ffffff; |
||||
opacity: 0.5; |
||||
} |
||||
|
||||
.vider>>>.el-divider--vertical { |
||||
height: 130px; |
||||
background: #ffffff; |
||||
opacity: 0.23; |
||||
margin: 25px 30px; |
||||
} |
||||
|
||||
.el-divider--horizontal { |
||||
margin: 0; |
||||
background: #ffffff; |
||||
opacity: 0.23; |
||||
} |
||||
|
||||
.footer { |
||||
position: fixed; |
||||
right: 50px; |
||||
bottom: 50px; |
||||
/* width: 50px; |
||||
height: 50px; */ |
||||
/* display: none; */ |
||||
} |
||||
|
||||
.bottoaxwa { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
} |
||||
|
||||
.bottoaxwa a { |
||||
text-decoration: none; |
||||
color: #b3b3b3; |
||||
} |
||||
</style> |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue