|
|
|
@ -1,115 +1,85 @@ |
|
|
|
|
<template> |
|
|
|
|
<div class="wrap index"> |
|
|
|
|
<div class="banner" |
|
|
|
|
:style="{backgroundImage: 'url(' + (form.carouselUrl || 'https://huoran.oss-cn-shenzhen.aliyuncs.com/20230515/jpg/1658017103770836992.jpg') + ')'}">创业活动详情</div> |
|
|
|
|
:style="{ backgroundImage: 'url(' + (form.carouselUrl || 'https://huoran.oss-cn-shenzhen.aliyuncs.com/20230515/jpg/1658017103770836992.jpg') + ')' }"> |
|
|
|
|
创业活动详情</div> |
|
|
|
|
<div class="center-con"> |
|
|
|
|
<div class="center-wrap"> |
|
|
|
|
<breadcrumb ref="breadcrumb" |
|
|
|
|
:data="'全部项目/' + form.projectName" |
|
|
|
|
:query="{ |
|
|
|
|
whetherToSignUp: $route.query.whetherToSignUp, |
|
|
|
|
filterSort: $route.query.filterSort, |
|
|
|
|
keyword: $route.query.keyword, |
|
|
|
|
page: $route.query.page, |
|
|
|
|
}"></breadcrumb> |
|
|
|
|
<breadcrumb ref="breadcrumb" :data="'全部项目/' + form.projectName" :query="{ |
|
|
|
|
whetherToSignUp: $route.query.whetherToSignUp, |
|
|
|
|
filterSort: $route.query.filterSort, |
|
|
|
|
keyword: $route.query.keyword, |
|
|
|
|
page: $route.query.page, |
|
|
|
|
}"></breadcrumb> |
|
|
|
|
<div class="content"> |
|
|
|
|
<div class="tool flex-between"> |
|
|
|
|
<el-tabs v-model="curType" |
|
|
|
|
@tab-click="typeChange"> |
|
|
|
|
<el-tab-pane v-for="(item, index) in typeList" |
|
|
|
|
:key="index" |
|
|
|
|
:label="item.name" |
|
|
|
|
:name="item.id"></el-tab-pane> |
|
|
|
|
<el-tabs v-model="curType" @tab-click="typeChange"> |
|
|
|
|
<el-tab-pane v-for="(item, index) in typeList" :key="index" :label="item.name" |
|
|
|
|
:name="item.id"></el-tab-pane> |
|
|
|
|
</el-tabs> |
|
|
|
|
<div class="action"> |
|
|
|
|
<p class="end-text" |
|
|
|
|
v-if="end"> |
|
|
|
|
<p class="end-text" v-if="end"> |
|
|
|
|
距离{{ endList[status] }}还有 |
|
|
|
|
<em>{{ end }}</em> |
|
|
|
|
</p> |
|
|
|
|
<a class="status" |
|
|
|
|
:class="{wait: status == 0,signing: status == 2,signed: status == 1,finish: status == 3 || status == 4}" |
|
|
|
|
:title="statusList[status]" |
|
|
|
|
@click.stop="signup">{{ statusList[status] }}</a> |
|
|
|
|
:class="{ wait: status == 0, signing: status == 2, signed: status == 1, finish: status == 3 || status == 4 }" |
|
|
|
|
:title="statusList[status]" @click.stop="signup">{{ statusList[status] }}</a> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="info" |
|
|
|
|
id="part1"> |
|
|
|
|
<div class="info" id="part1"> |
|
|
|
|
<h6 class="title">{{ form.projectName }}</h6> |
|
|
|
|
<div class="meta">最近编辑时间:{{ form.updateTime }}</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div v-show="curType < 4"> |
|
|
|
|
<div class="l-title"><img src="@/assets/img/label.png" |
|
|
|
|
alt=""> 项目信息</div> |
|
|
|
|
<div v-if="form.projectDescribe" |
|
|
|
|
class="texts ql-editor" |
|
|
|
|
v-html="form.projectDescribe"></div> |
|
|
|
|
<div class="l-title"><img src="@/assets/img/label.png" alt=""> 项目信息</div> |
|
|
|
|
<div v-if="form.projectDescribe" class="texts ql-editor" v-html="form.projectDescribe"></div> |
|
|
|
|
<template v-if="form.activityFileList"> |
|
|
|
|
<h6 class="p-title">附件下载</h6> |
|
|
|
|
<ul class="files"> |
|
|
|
|
<li v-for="(item, i) in form.activityFileList" |
|
|
|
|
:key="i"> |
|
|
|
|
<el-link v-if="item.canPreview" |
|
|
|
|
class="m-r-10" |
|
|
|
|
type="primary" |
|
|
|
|
@click="preview(item)">{{ item.fileName }}</el-link> |
|
|
|
|
<span v-else |
|
|
|
|
class="fileName">{{ item.fileName }}</span> |
|
|
|
|
<el-link type="primary" |
|
|
|
|
:underline="false" |
|
|
|
|
@click="download(item)">下载</el-link> |
|
|
|
|
<li v-for="(item, i) in form.activityFileList" :key="i"> |
|
|
|
|
<el-link v-if="item.canPreview" class="m-r-10" type="primary" @click="preview(item)">{{ item.fileName |
|
|
|
|
}}</el-link> |
|
|
|
|
<span v-else class="fileName">{{ item.fileName }}</span> |
|
|
|
|
<el-link type="primary" :underline="false" @click="download(item)">下载</el-link> |
|
|
|
|
</li> |
|
|
|
|
</ul> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<!-- 进展 --> |
|
|
|
|
<div class="l-title" |
|
|
|
|
id="part2"><img src="@/assets/img/label.png" |
|
|
|
|
alt=""> 项目进展</div> |
|
|
|
|
<ul class="progress" |
|
|
|
|
v-if="progress.length"> |
|
|
|
|
<li v-for="(item,index) in progress" |
|
|
|
|
:key="index" |
|
|
|
|
:class="item.status == 0 ? 'not' : (item.status == 1 ? 'ing' : 'done')"> |
|
|
|
|
<div class="l-title" id="part2"><img src="@/assets/img/label.png" alt=""> 项目进展</div> |
|
|
|
|
<ul class="progress" v-if="progress.length"> |
|
|
|
|
<li v-for="(item, index) in progress" :key="index" |
|
|
|
|
:class="item.status == 0 ? 'not' : (item.status == 1 ? 'ing' : 'done')"> |
|
|
|
|
<i class="dot"></i> |
|
|
|
|
<p class="name">{{item.title}}</p> |
|
|
|
|
<p class="desc">{{item.description}}</p> |
|
|
|
|
<p class="name">{{ item.title }}</p> |
|
|
|
|
<p class="desc">{{ item.description }}</p> |
|
|
|
|
</li> |
|
|
|
|
<img class="rocket" |
|
|
|
|
src="@/assets/img/rocket.png" |
|
|
|
|
alt=""> |
|
|
|
|
<img class="rocket" src="@/assets/img/rocket.png" alt=""> |
|
|
|
|
</ul> |
|
|
|
|
<template v-else> |
|
|
|
|
<div class="empty"> |
|
|
|
|
<div> |
|
|
|
|
<img src="@/assets/img/none.png" |
|
|
|
|
alt=""> |
|
|
|
|
<img src="@/assets/img/none.png" alt=""> |
|
|
|
|
<p>暂无数据</p> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<!-- 公告 --> |
|
|
|
|
<div class="l-title" |
|
|
|
|
id="part3"><img src="@/assets/img/label.png" |
|
|
|
|
alt=""> 通知公告</div> |
|
|
|
|
<ul class="notice-list" |
|
|
|
|
v-if="notices.length"> |
|
|
|
|
<li v-for="(item, i) in notices" |
|
|
|
|
:key="i" |
|
|
|
|
@click="toNotice(item)"> |
|
|
|
|
<div class="l-title" id="part3"><img src="@/assets/img/label.png" alt=""> 通知公告</div> |
|
|
|
|
<ul class="notice-list" v-if="notices.length"> |
|
|
|
|
<li v-for="(item, i) in notices" :key="i" @click="toNotice(item)"> |
|
|
|
|
<h6>{{ item.announcementTitle }}</h6> |
|
|
|
|
<p class="meta">{{ item.updateTime }}</p> |
|
|
|
|
<div class="des" |
|
|
|
|
v-html="item.announcementText"></div> |
|
|
|
|
<div class="des" v-html="item.announcementText"></div> |
|
|
|
|
</li> |
|
|
|
|
</ul> |
|
|
|
|
<template v-else> |
|
|
|
|
<div class="empty"> |
|
|
|
|
<div> |
|
|
|
|
<img src="@/assets/img/none.png" |
|
|
|
|
alt=""> |
|
|
|
|
<img src="@/assets/img/none.png" alt=""> |
|
|
|
|
<p>暂无通知公告</p> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -119,24 +89,15 @@ |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<el-dialog title="报名" |
|
|
|
|
:visible.sync="signupVisible" |
|
|
|
|
:close-on-click-modal="false" |
|
|
|
|
width="300px"> |
|
|
|
|
<el-dialog title="报名" :visible.sync="signupVisible" :close-on-click-modal="false" width="300px"> |
|
|
|
|
<el-form class="dia-form"> |
|
|
|
|
<el-form-item> |
|
|
|
|
<el-input placeholder="请输入4位数大赛邀请码" |
|
|
|
|
maxlength="4" |
|
|
|
|
v-model="invitationCode"></el-input> |
|
|
|
|
<el-input placeholder="请输入4位数大赛邀请码" maxlength="4" v-model="invitationCode"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<span slot="footer" |
|
|
|
|
class="dialog-footer"> |
|
|
|
|
<el-button size="small" |
|
|
|
|
type="primary" |
|
|
|
|
@click="signupSubmit">报名</el-button> |
|
|
|
|
<el-button size="small" |
|
|
|
|
@click="signupVisible = false">取消</el-button> |
|
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
|
<el-button size="small" type="primary" @click="signupSubmit">报名</el-button> |
|
|
|
|
<el-button size="small" @click="signupVisible = false">取消</el-button> |
|
|
|
|
</span> |
|
|
|
|
</el-dialog> |
|
|
|
|
</div> |
|
|
|
@ -399,385 +360,454 @@ export default { |
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|
.wrap { |
|
|
|
|
margin: -24px; |
|
|
|
|
margin: -24px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.banner { |
|
|
|
|
width: 100%; |
|
|
|
|
height: 350px; |
|
|
|
|
padding: 120px 0 0 24%; |
|
|
|
|
font-size: 34px; |
|
|
|
|
font-weight: 600; |
|
|
|
|
color: #fff; |
|
|
|
|
background-size: 100% 100%; |
|
|
|
|
background-repeat: no-repeat; |
|
|
|
|
width: 100%; |
|
|
|
|
height: 350px; |
|
|
|
|
padding: 120px 0 0 24%; |
|
|
|
|
font-size: 34px; |
|
|
|
|
font-weight: 600; |
|
|
|
|
color: #fff; |
|
|
|
|
background-size: 100% 100%; |
|
|
|
|
background-repeat: no-repeat; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.l-title { |
|
|
|
|
font-size: 18px; |
|
|
|
|
font-size: 18px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.main .center-con { |
|
|
|
|
background: url(../../../assets/img/match-bg1.png) (0px 95px) / auto auto no-repeat, |
|
|
|
|
url(../../../assets/img/match-bg2.png) (98% 300px) / auto auto no-repeat; |
|
|
|
|
background: url(../../../assets/img/match-bg1.png) (0px 95px) / auto auto no-repeat, |
|
|
|
|
url(../../../assets/img/match-bg2.png) (98% 300px) / auto auto no-repeat; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.main .center-wrap { |
|
|
|
|
width: 1000px; |
|
|
|
|
margin: 30px auto 0; |
|
|
|
|
width: 1000px; |
|
|
|
|
margin: 30px auto 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.rule-title { |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
font-size: 16px; |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
font-size: 16px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.rule { |
|
|
|
|
padding: 15px; |
|
|
|
|
margin-bottom: 15px; |
|
|
|
|
border: 1px solid #dfdfdf; |
|
|
|
|
p { |
|
|
|
|
font-size: 14px; |
|
|
|
|
line-height: 30px; |
|
|
|
|
color: #6e6e6e; |
|
|
|
|
} |
|
|
|
|
padding: 15px; |
|
|
|
|
margin-bottom: 15px; |
|
|
|
|
border: 1px solid #dfdfdf; |
|
|
|
|
|
|
|
|
|
p { |
|
|
|
|
font-size: 14px; |
|
|
|
|
line-height: 30px; |
|
|
|
|
color: #6e6e6e; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/deep/.el-tabs__item { |
|
|
|
|
box-shadow: none !important; |
|
|
|
|
box-shadow: none !important; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.content { |
|
|
|
|
position: relative; |
|
|
|
|
padding: 20px 40px; |
|
|
|
|
margin-top: 30px; |
|
|
|
|
position: relative; |
|
|
|
|
padding: 20px 40px; |
|
|
|
|
margin-top: 30px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
|
|
|
|
|
.title { |
|
|
|
|
width: 67%; |
|
|
|
|
margin: 0 auto; |
|
|
|
|
font-size: 28px; |
|
|
|
|
text-align: center; |
|
|
|
|
color: #0b1d30; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.tool { |
|
|
|
|
z-index: 100; |
|
|
|
|
position: sticky; |
|
|
|
|
top: 0; |
|
|
|
|
margin-bottom: 20px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
.title { |
|
|
|
|
width: 67%; |
|
|
|
|
margin: 0 auto; |
|
|
|
|
font-size: 28px; |
|
|
|
|
text-align: center; |
|
|
|
|
color: #0b1d30; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.info .meta { |
|
|
|
|
padding: 16px 0; |
|
|
|
|
font-size: 12px; |
|
|
|
|
color: #999; |
|
|
|
|
text-align: center; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.action { |
|
|
|
|
display: inline-flex; |
|
|
|
|
align-items: center; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.status { |
|
|
|
|
max-width: 120px; |
|
|
|
|
padding: 0 16px; |
|
|
|
|
margin-left: 20px; |
|
|
|
|
line-height: 34px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #fff; |
|
|
|
|
background-color: #52c41a; |
|
|
|
|
border-radius: 4px; |
|
|
|
|
cursor: pointer; |
|
|
|
|
@include ellipsis(); |
|
|
|
|
|
|
|
|
|
&.wait { |
|
|
|
|
background-color: #faad14; |
|
|
|
|
} |
|
|
|
|
.tool { |
|
|
|
|
z-index: 100; |
|
|
|
|
position: sticky; |
|
|
|
|
top: 0; |
|
|
|
|
margin-bottom: 20px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
|
|
|
|
|
&.signing { |
|
|
|
|
background-color: $main-color; |
|
|
|
|
} |
|
|
|
|
.info .meta { |
|
|
|
|
padding: 16px 0; |
|
|
|
|
font-size: 12px; |
|
|
|
|
color: #999; |
|
|
|
|
text-align: center; |
|
|
|
|
|
|
|
|
|
&.signed { |
|
|
|
|
background-color: #52c41a; |
|
|
|
|
} |
|
|
|
|
.action { |
|
|
|
|
display: inline-flex; |
|
|
|
|
align-items: center; |
|
|
|
|
|
|
|
|
|
&.playing { |
|
|
|
|
background-color: #f96d6d; |
|
|
|
|
} |
|
|
|
|
.status { |
|
|
|
|
max-width: 120px; |
|
|
|
|
padding: 0 16px; |
|
|
|
|
margin-left: 20px; |
|
|
|
|
line-height: 34px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
|
|
|
|
|
&.finish { |
|
|
|
|
background-color: #ccc; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.end-text { |
|
|
|
|
font-size: 12px; |
|
|
|
|
color: #666; |
|
|
|
|
|
|
|
|
|
em { |
|
|
|
|
font-style: normal; |
|
|
|
|
color: #f00; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.texts { |
|
|
|
|
margin: 20px 0 50px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
line-height: 1.6; |
|
|
|
|
text-indent: 2em; |
|
|
|
|
overflow: hidden; |
|
|
|
|
|
|
|
|
|
/deep/img { |
|
|
|
|
max-width: 100%; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.progress { |
|
|
|
|
position: relative; |
|
|
|
|
width: 95%; |
|
|
|
|
padding: 50px 0; |
|
|
|
|
margin: 40px auto 80px; |
|
|
|
|
text-align: left; |
|
|
|
|
|
|
|
|
|
&:before { |
|
|
|
|
content: ''; |
|
|
|
|
position: absolute; |
|
|
|
|
top: 0; |
|
|
|
|
left: 50%; |
|
|
|
|
width: 2px; |
|
|
|
|
height: 100%; |
|
|
|
|
background-color: #e1e6f2; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&:after { |
|
|
|
|
content: ''; |
|
|
|
|
position: absolute; |
|
|
|
|
top: -10px; |
|
|
|
|
left: 430px; |
|
|
|
|
border: 8px solid transparent; |
|
|
|
|
border-bottom-color: #e1e6f2; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.rocket { |
|
|
|
|
position: absolute; |
|
|
|
|
bottom: -50px; |
|
|
|
|
left: 425px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
li { |
|
|
|
|
position: relative; |
|
|
|
|
width: 400px; |
|
|
|
|
margin-bottom: 42px; |
|
|
|
|
|
|
|
|
|
.dot { |
|
|
|
|
position: absolute; |
|
|
|
|
top: 12px; |
|
|
|
|
left: 431px; |
|
|
|
|
width: 15px; |
|
|
|
|
height: 15px; |
|
|
|
|
background-color: #dcdcdc; |
|
|
|
|
border-radius: 50%; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.name { |
|
|
|
|
display: inline-block; |
|
|
|
|
padding: 0 19px; |
|
|
|
|
margin-bottom: 16px; |
|
|
|
|
line-height: 40px; |
|
|
|
|
text-align: center; |
|
|
|
|
font-size: 16px; |
|
|
|
|
color: #fff; |
|
|
|
|
background-color: #52c41a; |
|
|
|
|
border-radius: 4px; |
|
|
|
|
cursor: pointer; |
|
|
|
|
@include ellipsis(); |
|
|
|
|
&.wait { |
|
|
|
|
background-color: #faad14; |
|
|
|
|
border-radius: 20px; |
|
|
|
|
background-color: #c4c4c4; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.desc { |
|
|
|
|
position: relative; |
|
|
|
|
color: #333; |
|
|
|
|
font-size: 14px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&.ing, |
|
|
|
|
&.done { |
|
|
|
|
.dot { |
|
|
|
|
top: 8px; |
|
|
|
|
background-color: $main-color; |
|
|
|
|
} |
|
|
|
|
&.signing { |
|
|
|
|
background-color: $main-color; |
|
|
|
|
|
|
|
|
|
.name { |
|
|
|
|
background-color: $main-color; |
|
|
|
|
} |
|
|
|
|
&.signed { |
|
|
|
|
background-color: #52c41a; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&.ing { |
|
|
|
|
.dot { |
|
|
|
|
width: 27px; |
|
|
|
|
height: 27px; |
|
|
|
|
border: 6px solid #e2f1fb; |
|
|
|
|
} |
|
|
|
|
&.playing { |
|
|
|
|
background-color: #f96d6d; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&:nth-child(odd) { |
|
|
|
|
text-align: right; |
|
|
|
|
|
|
|
|
|
&.ing { |
|
|
|
|
.dot { |
|
|
|
|
left: auto; |
|
|
|
|
right: -51px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
&.finish { |
|
|
|
|
background-color: #ccc; |
|
|
|
|
|
|
|
|
|
.name { |
|
|
|
|
&:before { |
|
|
|
|
content: ''; |
|
|
|
|
z-index: 2; |
|
|
|
|
position: absolute; |
|
|
|
|
top: 14px; |
|
|
|
|
right: -35px; |
|
|
|
|
border: 18px solid transparent; |
|
|
|
|
border-top-width: 6px; |
|
|
|
|
border-bottom-width: 6px; |
|
|
|
|
border-left-color: #c4c4c4; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.end-text { |
|
|
|
|
font-size: 12px; |
|
|
|
|
color: #666; |
|
|
|
|
em { |
|
|
|
|
font-style: normal; |
|
|
|
|
color: #f00; |
|
|
|
|
|
|
|
|
|
.desc { |
|
|
|
|
text-align: right; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
margin: 20px 0 50px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
line-height: 1.6; |
|
|
|
|
text-indent: 2em; |
|
|
|
|
overflow: hidden; |
|
|
|
|
/deep/img { |
|
|
|
|
max-width: 100%; |
|
|
|
|
|
|
|
|
|
&.ing, |
|
|
|
|
&.done { |
|
|
|
|
.name { |
|
|
|
|
&:before { |
|
|
|
|
border-left-color: $main-color; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.progress { |
|
|
|
|
position: relative; |
|
|
|
|
width: 95%; |
|
|
|
|
padding: 50px 0; |
|
|
|
|
margin: 40px auto 80px; |
|
|
|
|
text-align: left; |
|
|
|
|
&:before { |
|
|
|
|
content: ''; |
|
|
|
|
position: absolute; |
|
|
|
|
top: 0; |
|
|
|
|
left: 50%; |
|
|
|
|
width: 2px; |
|
|
|
|
height: 100%; |
|
|
|
|
background-color: #e1e6f2; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&:nth-child(even) { |
|
|
|
|
margin-left: 482px; |
|
|
|
|
|
|
|
|
|
.dot { |
|
|
|
|
left: -51px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&.ing { |
|
|
|
|
.dot { |
|
|
|
|
left: -57px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
&:after { |
|
|
|
|
|
|
|
|
|
.name { |
|
|
|
|
text-align: left; |
|
|
|
|
|
|
|
|
|
&:after { |
|
|
|
|
content: ''; |
|
|
|
|
z-index: 2; |
|
|
|
|
position: absolute; |
|
|
|
|
top: -10px; |
|
|
|
|
left: 430px; |
|
|
|
|
border: 8px solid transparent; |
|
|
|
|
border-bottom-color: #e1e6f2; |
|
|
|
|
top: 14px; |
|
|
|
|
left: -35px; |
|
|
|
|
border: 18px solid transparent; |
|
|
|
|
border-top-width: 6px; |
|
|
|
|
border-bottom-width: 6px; |
|
|
|
|
border-right-color: #c4c4c4; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.rocket { |
|
|
|
|
position: absolute; |
|
|
|
|
bottom: -50px; |
|
|
|
|
left: 425px; |
|
|
|
|
|
|
|
|
|
.desc { |
|
|
|
|
&:before { |
|
|
|
|
left: auto; |
|
|
|
|
right: -16px; |
|
|
|
|
border: 8px solid transparent; |
|
|
|
|
border-left-color: #fff; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&:after { |
|
|
|
|
left: auto; |
|
|
|
|
right: -18px; |
|
|
|
|
border: 9px solid transparent; |
|
|
|
|
border-left-color: #e6e6e6; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
li { |
|
|
|
|
position: relative; |
|
|
|
|
width: 400px; |
|
|
|
|
margin-bottom: 42px; |
|
|
|
|
.dot { |
|
|
|
|
position: absolute; |
|
|
|
|
top: 12px; |
|
|
|
|
left: 431px; |
|
|
|
|
width: 15px; |
|
|
|
|
height: 15px; |
|
|
|
|
background-color: #dcdcdc; |
|
|
|
|
border-radius: 50%; |
|
|
|
|
} |
|
|
|
|
.name { |
|
|
|
|
display: inline-block; |
|
|
|
|
padding: 0 19px; |
|
|
|
|
margin-bottom: 16px; |
|
|
|
|
line-height: 40px; |
|
|
|
|
text-align: center; |
|
|
|
|
font-size: 16px; |
|
|
|
|
color: #fff; |
|
|
|
|
border-radius: 20px; |
|
|
|
|
background-color: #c4c4c4; |
|
|
|
|
} |
|
|
|
|
.desc { |
|
|
|
|
position: relative; |
|
|
|
|
color: #333; |
|
|
|
|
font-size: 14px; |
|
|
|
|
} |
|
|
|
|
&.ing, |
|
|
|
|
&.done { |
|
|
|
|
.dot { |
|
|
|
|
top: 8px; |
|
|
|
|
background-color: #007eff; |
|
|
|
|
} |
|
|
|
|
.name { |
|
|
|
|
background-color: #007eff; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
&.ing { |
|
|
|
|
.dot { |
|
|
|
|
width: 27px; |
|
|
|
|
height: 27px; |
|
|
|
|
border: 6px solid #e2f1fb; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
&:nth-child(odd) { |
|
|
|
|
text-align: right; |
|
|
|
|
&.ing { |
|
|
|
|
.dot { |
|
|
|
|
left: auto; |
|
|
|
|
right: -51px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.name { |
|
|
|
|
&:before { |
|
|
|
|
content: ''; |
|
|
|
|
z-index: 2; |
|
|
|
|
position: absolute; |
|
|
|
|
top: 14px; |
|
|
|
|
right: -35px; |
|
|
|
|
border: 18px solid transparent; |
|
|
|
|
border-top-width: 6px; |
|
|
|
|
border-bottom-width: 6px; |
|
|
|
|
border-left-color: #c4c4c4; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.desc { |
|
|
|
|
text-align: right; |
|
|
|
|
} |
|
|
|
|
&.ing, |
|
|
|
|
&.done { |
|
|
|
|
.name { |
|
|
|
|
&:before { |
|
|
|
|
border-left-color: #007eff; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
&:nth-child(even) { |
|
|
|
|
margin-left: 482px; |
|
|
|
|
.dot { |
|
|
|
|
left: -51px; |
|
|
|
|
} |
|
|
|
|
&.ing { |
|
|
|
|
.dot { |
|
|
|
|
left: -57px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.name { |
|
|
|
|
text-align: left; |
|
|
|
|
&:after { |
|
|
|
|
content: ''; |
|
|
|
|
z-index: 2; |
|
|
|
|
position: absolute; |
|
|
|
|
top: 14px; |
|
|
|
|
left: -35px; |
|
|
|
|
border: 18px solid transparent; |
|
|
|
|
border-top-width: 6px; |
|
|
|
|
border-bottom-width: 6px; |
|
|
|
|
border-right-color: #c4c4c4; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.desc { |
|
|
|
|
&:before { |
|
|
|
|
left: auto; |
|
|
|
|
right: -16px; |
|
|
|
|
border: 8px solid transparent; |
|
|
|
|
border-left-color: #fff; |
|
|
|
|
} |
|
|
|
|
&:after { |
|
|
|
|
left: auto; |
|
|
|
|
right: -18px; |
|
|
|
|
border: 9px solid transparent; |
|
|
|
|
border-left-color: #e6e6e6; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&.ing, |
|
|
|
|
&.done { |
|
|
|
|
.name { |
|
|
|
|
&:after { |
|
|
|
|
border-right-color: #007eff; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
&:last-child { |
|
|
|
|
margin-bottom: 0; |
|
|
|
|
|
|
|
|
|
&.ing, |
|
|
|
|
&.done { |
|
|
|
|
.name { |
|
|
|
|
&:after { |
|
|
|
|
border-right-color: $main-color; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&:last-child { |
|
|
|
|
margin-bottom: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.files { |
|
|
|
|
margin-bottom: 30px; |
|
|
|
|
li { |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
margin: 10px 0; |
|
|
|
|
} |
|
|
|
|
.fileName { |
|
|
|
|
margin-right: 10px; |
|
|
|
|
font-size: 12px; |
|
|
|
|
} |
|
|
|
|
margin-bottom: 30px; |
|
|
|
|
|
|
|
|
|
li { |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
margin: 10px 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.fileName { |
|
|
|
|
margin-right: 10px; |
|
|
|
|
font-size: 12px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.notice-list { |
|
|
|
|
text-align: left; |
|
|
|
|
li { |
|
|
|
|
padding: 16px; |
|
|
|
|
margin-bottom: 12px; |
|
|
|
|
transition: all 0.3s; |
|
|
|
|
cursor: pointer; |
|
|
|
|
border-radius: 6px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
border-bottom: 1px dashed #ebebeb; |
|
|
|
|
&:last-child { |
|
|
|
|
border-bottom: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
h6 { |
|
|
|
|
font-size: 20px; |
|
|
|
|
font-weight: 500; |
|
|
|
|
color: #0b1d30; |
|
|
|
|
&:hover { |
|
|
|
|
color: #007eff; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.meta { |
|
|
|
|
margin: 10px 0; |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #666; |
|
|
|
|
text-align: left; |
|
|
|
|
|
|
|
|
|
li { |
|
|
|
|
padding: 16px; |
|
|
|
|
margin-bottom: 12px; |
|
|
|
|
transition: all 0.3s; |
|
|
|
|
cursor: pointer; |
|
|
|
|
border-radius: 6px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
border-bottom: 1px dashed #ebebeb; |
|
|
|
|
|
|
|
|
|
&:last-child { |
|
|
|
|
border-bottom: 0; |
|
|
|
|
} |
|
|
|
|
.des { |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #333; |
|
|
|
|
line-height: 24px; |
|
|
|
|
display: -webkit-box; |
|
|
|
|
display: -moz-box; |
|
|
|
|
-webkit-box-orient: vertical; |
|
|
|
|
-moz-box-orient: vertical; |
|
|
|
|
-webkit-line-clamp: 2; |
|
|
|
|
-moz-line-clamp: 2; |
|
|
|
|
overflow: hidden; |
|
|
|
|
text-overflow: ellipsis; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
h6 { |
|
|
|
|
font-size: 20px; |
|
|
|
|
font-weight: 500; |
|
|
|
|
color: #0b1d30; |
|
|
|
|
|
|
|
|
|
&:hover { |
|
|
|
|
color: $main-color; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.meta { |
|
|
|
|
margin: 10px 0; |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #666; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.des { |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #333; |
|
|
|
|
line-height: 24px; |
|
|
|
|
display: -webkit-box; |
|
|
|
|
display: -moz-box; |
|
|
|
|
-webkit-box-orient: vertical; |
|
|
|
|
-moz-box-orient: vertical; |
|
|
|
|
-webkit-line-clamp: 2; |
|
|
|
|
-moz-line-clamp: 2; |
|
|
|
|
overflow: hidden; |
|
|
|
|
text-overflow: ellipsis; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.table { |
|
|
|
|
width: 100%; |
|
|
|
|
border-collapse: collapse; |
|
|
|
|
th, |
|
|
|
|
td { |
|
|
|
|
padding: 12px; |
|
|
|
|
border: 1px solid #ebeef5; |
|
|
|
|
} |
|
|
|
|
&.tc { |
|
|
|
|
text-align: center; |
|
|
|
|
} |
|
|
|
|
th { |
|
|
|
|
text-align: center; |
|
|
|
|
background-color: #f8faff; |
|
|
|
|
} |
|
|
|
|
.icon { |
|
|
|
|
margin-right: 10px; |
|
|
|
|
font-size: 16px; |
|
|
|
|
color: #7a7a7a; |
|
|
|
|
cursor: pointer; |
|
|
|
|
&:hover { |
|
|
|
|
color: #007eff; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.plus { |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
text-align: right; |
|
|
|
|
width: 100%; |
|
|
|
|
border-collapse: collapse; |
|
|
|
|
|
|
|
|
|
th, |
|
|
|
|
td { |
|
|
|
|
padding: 12px; |
|
|
|
|
border: 1px solid #ebeef5; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&.tc { |
|
|
|
|
text-align: center; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
th { |
|
|
|
|
text-align: center; |
|
|
|
|
background-color: #f8faff; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.icon { |
|
|
|
|
margin-right: 10px; |
|
|
|
|
font-size: 16px; |
|
|
|
|
color: #7a7a7a; |
|
|
|
|
cursor: pointer; |
|
|
|
|
|
|
|
|
|
&:hover { |
|
|
|
|
color: $main-color; |
|
|
|
|
} |
|
|
|
|
.line { |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
.el-input { |
|
|
|
|
margin-right: 15px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.plus { |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
text-align: right; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.line { |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
|
|
|
|
|
.el-input { |
|
|
|
|
margin-right: 15px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.flex-center { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
align-items: center; |
|
|
|
|
margin-bottom: 15px; |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
align-items: center; |
|
|
|
|
margin-bottom: 15px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/deep/.dia-form { |
|
|
|
|
.w-100 { |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
.tips { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
} |
|
|
|
|
.w-100 { |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.tips { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |