You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.6 KiB
87 lines
2.6 KiB
<!--
|
|
* @Author: wally
|
|
* @email: 18603454788@163.com
|
|
* @Date: 2021-01-13 17:21:29
|
|
* @LastEditors: wally
|
|
* @LastEditTime: 2021-01-20 12:40:56
|
|
-->
|
|
<template>
|
|
<div>
|
|
<div class="footer">
|
|
<div class="d-flex flex-nowrap flex-column">
|
|
<!-- <div class="box">
|
|
<img class="pic" src="~assets/logo_bottom.png" />
|
|
</div> -->
|
|
<div class="box flex-1 d-flex justify-center">
|
|
<!-- <div class="title">发现</div> -->
|
|
<span @click="$router.push('/Challenge/Solicitation')" class="pointer mr-2">创新挑战</span>
|
|
<span @click="$router.push('/NewPlatform/NewCore')" class="pointer mr-2">创新平台</span>
|
|
<span @click="$router.push('/IncubationPlatform/MakerSpace')" class="pointer mr-2">孵化平台</span>
|
|
<span @click="$router.push('/Industry/Union')" class="pointer mr-2">产业平台</span>
|
|
<span @click="$router.push('/Community')" class="pointer mr-2">在线社区</span>
|
|
</div>
|
|
<div class="box flex-1 d-flex justify-center">
|
|
<!-- <div class="title">资讯</div> -->
|
|
<span @click="$router.push('/ItInformation')" class="pointer mr-2">行业资讯</span>
|
|
<span @click="$router.push('/Activity')" class="pointer mr-2">活动公告</span>
|
|
<span @click="$router.push('/Policy')" class="pointer mr-2">国家政策</span>
|
|
<span @click="$router.push('/Policy')" class="pointer mr-2">行业政策</span>
|
|
<span @click="$router.push('/Policy')" class="pointer mr-2">省级政策</span>
|
|
</div>
|
|
<div class="box flex-1 d-flex justify-center align-center">
|
|
<div class="mr-2 font-12">我要入驻</div>
|
|
<span @click="$router.push('/ContactUs')" class="pointer">人才招聘</span>
|
|
<!-- <div class="font-bold-24 mt-3" style="font-style: italic">0351-5223175</div> -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="font-12 align-center text" style="padding: 10px auto!important">
|
|
Copyright © 2020 The Project by
|
|
<span style="color: #2e54ea">CCSENS</span>. All Rights Reserved
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return { str: '头部导航栏' };
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.footer {
|
|
color: #D7D7D7;
|
|
}
|
|
|
|
.pic {
|
|
width: 130px;
|
|
}
|
|
|
|
.box {
|
|
margin-top: 8px;
|
|
|
|
.title {
|
|
font-size: 18px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
span {
|
|
font-size: 12px;
|
|
line-height: 24px;
|
|
}
|
|
}
|
|
|
|
.xian {
|
|
width: 100%;
|
|
height: 1px;
|
|
background: rgba(204, 204, 204, 0.35);
|
|
margin-top: 100px;
|
|
}
|
|
|
|
.text {
|
|
text-align: center;
|
|
line-height: 90px;
|
|
}
|
|
</style>
|
|
|