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.
105 lines
3.1 KiB
105 lines
3.1 KiB
<template>
|
|
<div>
|
|
<h-nav />
|
|
<div class="inner my-1">
|
|
<bread-crumb :arr="arr" />
|
|
</div>
|
|
<div class="top-box" style="height: 110px">
|
|
<div class="top-title">创新挑战</div>
|
|
<div class="top-txt">针对企业具体技术创新需求,通过“揭榜+比拼”方式,面向社会公开征集解决方案的服务。</div>
|
|
</div>
|
|
<div class="center-box">
|
|
<div class="center-title">
|
|
<div class="circular"></div>
|
|
<div style="margin-left: 40px">目的及意义</div>
|
|
</div>
|
|
<div
|
|
class="center-txt"
|
|
>创新挑战有助于解决企业发展实际问题,有效降低创新成本;有助于需求与技术精准对接,促进科技成果转移转化;有助于解决产业关键共性问题,推动区域产业经济发展。</div>
|
|
</div>
|
|
<div class="center-box">
|
|
<div class="center-title">
|
|
<div class="circular"></div>
|
|
<div style="margin-left: 40px">挑战流程</div>
|
|
</div>
|
|
<div class="center-txt">
|
|
<img class="fill-weight" src="../../../assets/solicitation.png" />
|
|
</div>
|
|
</div>
|
|
<div class="center-box" style="margin-bottom: 100px">
|
|
<div class="center-title">
|
|
<div class="circular"></div>
|
|
<div style="margin-left: 40px">有关要求</div>
|
|
</div>
|
|
<div class="center-txt d-flex flex-column">
|
|
<div>1. 重视信息公开。各有关地方要按规定对通知文件、需求信息、现场赛情况、赛事结果等及时公开和公布,保障信息公开渠道顺畅、快捷,确保赛事运行公平、公开、公正。</div>
|
|
<div>2. 加强技术秘密和知识产权保护。参与挑战的需求方、挑战者和评审专家均需签订“保密协议”和“免责声明”法律文本。</div>
|
|
<div>3. 加强监督,确保公平公正。严格按照事先确定的流程和规则进行,建立投诉和纠纷处理机制。</div>
|
|
<div class="d-flex flex-row-reverse">
|
|
<!-- <a-button class="mt-3" type="primary">需求填报</a-button> -->
|
|
<enroll />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import HNav from './../components/HNav.vue';
|
|
import BreadCrumb from 'components/BreadCrumb/BreadCrumb.vue';
|
|
import Enroll from '../components/Enroll.vue';
|
|
|
|
export default {
|
|
name: 'Solicitation',
|
|
components: { HNav, BreadCrumb, Enroll },
|
|
data() {
|
|
return {
|
|
title: '需求征集',
|
|
typeOfPlatform: '创新挑战',
|
|
arr: [
|
|
{ name: '创新挑战', url: '/Challenge/Solicitation' },
|
|
{ name: '需求征集', url: '' },
|
|
],
|
|
str: '征集界面',
|
|
list: [],
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.inner {
|
|
margin: 10px auto 15px;
|
|
}
|
|
|
|
.top-box {
|
|
height: 110px;
|
|
line-height: 110px;
|
|
background: -webkit-linear-gradient(left, #13ACC4, #A9C300) !important;
|
|
|
|
.top-title {
|
|
top: 0 !important;
|
|
}
|
|
}
|
|
|
|
.top-txt {
|
|
float: right;
|
|
margin-right: 12%;
|
|
width: 62%;
|
|
padding: 0;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
}
|
|
|
|
.center-txt {
|
|
float: right;
|
|
margin: 22px 0;
|
|
width: 79%;
|
|
line-height: 36px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.center-title {
|
|
top: 30% !important;
|
|
}
|
|
</style>
|
|
|