|
|
|
@ -1,41 +1,39 @@ |
|
|
|
<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" style="border: 1px solid black"> |
|
|
|
<div class="center-title d-flex align-center"> |
|
|
|
<div class="circular"></div> |
|
|
|
<div style="margin-left: 40px">目的及意义</div> |
|
|
|
<div style="margin-left: 1rem">目的及意义</div> |
|
|
|
</div> |
|
|
|
<div |
|
|
|
class="center-txt" |
|
|
|
>创新挑战有助于解决企业发展实际问题,有效降低创新成本;有助于需求与技术精准对接,促进科技成果转移转化;有助于解决产业关键共性问题,推动区域产业经济发展。</div> |
|
|
|
</div> |
|
|
|
<div class="center-box"> |
|
|
|
<div class="center-title"> |
|
|
|
<div class="center-title d-flex align-center"> |
|
|
|
<div class="circular"></div> |
|
|
|
<div style="margin-left: 40px">挑战流程</div> |
|
|
|
<div style="margin-left: 1rem">挑战流程</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="center-title d-flex align-center"> |
|
|
|
<div class="circular"></div> |
|
|
|
<div style="margin-left: 40px">有关要求</div> |
|
|
|
<div style="margin-left: 1rem">有关要求</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"> |
|
|
|
<div> |
|
|
|
<!-- <a-button class="mt-3" type="primary">需求填报</a-button> --> |
|
|
|
<enroll /> |
|
|
|
</div> |
|
|
|
@ -51,7 +49,7 @@ import Enroll from '../components/Enroll.vue'; |
|
|
|
|
|
|
|
export default { |
|
|
|
name: 'Solicitation', |
|
|
|
components: { HNav, BreadCrumb, Enroll }, |
|
|
|
components: { HNav,Enroll }, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
title: '需求征集', |
|
|
|
@ -71,6 +69,27 @@ export default { |
|
|
|
.inner { |
|
|
|
margin: 10px auto 15px; |
|
|
|
} |
|
|
|
.center-title { |
|
|
|
|
|
|
|
top: 10%; |
|
|
|
font-size: 30px; |
|
|
|
color: #000; |
|
|
|
} |
|
|
|
.center-box { |
|
|
|
|
|
|
|
background: #fff; |
|
|
|
padding: 0 1rem; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.circular { |
|
|
|
height: 20px; |
|
|
|
width: 20px; |
|
|
|
background: #13ACC4; |
|
|
|
border-radius: 50%; |
|
|
|
margin: auto 0 |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.top-box { |
|
|
|
height: 110px; |
|
|
|
@ -79,6 +98,7 @@ export default { |
|
|
|
|
|
|
|
.top-title { |
|
|
|
top: 0 !important; |
|
|
|
margin-left:1rem |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@ -93,9 +113,9 @@ export default { |
|
|
|
|
|
|
|
.center-txt { |
|
|
|
|
|
|
|
margin: 22px 0; |
|
|
|
width: 79%; |
|
|
|
line-height: 36px; |
|
|
|
margin: 1rem auto ; |
|
|
|
width: 82%; |
|
|
|
line-height: 1.5rem; |
|
|
|
font-size: 16px; |
|
|
|
} |
|
|
|
|
|
|
|
|