Commit cec35c5a authored by wuwangwolihui's avatar wuwangwolihui

营地2.0-修改bug

parent 941c2363
...@@ -97,14 +97,16 @@ ...@@ -97,14 +97,16 @@
font-weight: 400; font-weight: 400;
.active-list-item-cont-header { .active-list-item-cont-header {
display: flex; //display: flex;
flex-flow: row; //flex-flow: row;
align-items: center; //align-items: center;
line-height: 28px; line-height: 28px;
margin: 0.8vw 0 0.4vw; //margin: 0.8vw 0 0.4vw;
.label { .label {
height: 28px;
font-size: 12px; font-size: 12px;
margin: 0.8vw 0 0.4vw;
> span { > span {
padding: 5px 10px; padding: 5px 10px;
...@@ -112,12 +114,16 @@ ...@@ -112,12 +114,16 @@
color: #ffffff; color: #ffffff;
background-color: var(--all_color); background-color: var(--all_color);
margin-right: 5px; margin-right: 5px;
vertical-align: middle;
} }
} }
.title { .title {
height: 28px;
font-size: 18px; font-size: 18px;
font-weight: 500; font-weight: 500;
margin: 0.4vw 0 0.4vw;
color: #000000;
} }
} }
......
...@@ -8,3 +8,6 @@ ...@@ -8,3 +8,6 @@
--all_color: #436EF3; --all_color: #436EF3;
} }
body{
font-family: "PingFang SC";
}
...@@ -90,7 +90,6 @@ ...@@ -90,7 +90,6 @@
<div class="label" v-if="item.activityLabel"> <div class="label" v-if="item.activityLabel">
<span v-for="(item2, index2) in item.activityLabel.split(',')" <span v-for="(item2, index2) in item.activityLabel.split(',')"
:key="index2">{{item2}}</span> :key="index2">{{item2}}</span>
</div> </div>
<div class="title">{{item.name}}</div> <div class="title">{{item.name}}</div>
</div> </div>
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
<div>报名截止:{{formatYMDChina(activeInfo.bmEndTime)}}</div> <div>报名截止:{{formatYMDChina(activeInfo.bmEndTime)}}</div>
<div> <div>
活动费用:¥{{activeInfo.activityFee}} 活动费用:¥{{activeInfo.activityFee}}
<el-tooltip class="item" effect="dark" content="申请审核通过后,才可缴费参与活动" placement="top"> <el-tooltip class="item" effect="dark" content="申请审核通过后,才可缴费参与活动具体活动费用以缴费时为准。" placement="top">
<i class="el-icon-question"></i> <i class="el-icon-question"></i>
</el-tooltip> </el-tooltip>
</div> </div>
...@@ -611,6 +611,7 @@ ...@@ -611,6 +611,7 @@
padding: 15px 10px; padding: 15px 10px;
display: flex; display: flex;
flex-flow: row; flex-flow: row;
align-items: center;
margin-bottom: 10px; margin-bottom: 10px;
.back-area-item-cover { .back-area-item-cover {
......
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
<!--查看更多--> <!--查看更多-->
<div class="flex line"> <div class="flex line">
<div class="line"></div> <div class="line"></div>
<span>查看更多</span> <span class="view-more" @click="viewMore">查看更多</span>
</div> </div>
<!-- 学生感想和体会 --> <!-- 学生感想和体会 -->
<div> <div>
...@@ -164,6 +164,10 @@ ...@@ -164,6 +164,10 @@
this.getHot(); this.getHot();
}, },
methods: { methods: {
// 查看更多
viewMore(){
this.$router.push('/active');
},
getHot() { getHot() {
hot().then((res) => { hot().then((res) => {
if (res.data.code != 200) { if (res.data.code != 200) {
...@@ -231,11 +235,12 @@ ...@@ -231,11 +235,12 @@
border-bottom: 1px solid #D7D7D7; border-bottom: 1px solid #D7D7D7;
} }
span { .view-more {
color: #333333; color: #333333;
font-size: 14px; font-size: 14px;
width: 74px; width: 74px;
margin-left: 20px; margin-left: 20px;
cursor: pointer;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment