hookehuyr

fix

<!--
* @Date: 2022-09-26 14:36:57
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-10-28 13:48:22
* @LastEditTime: 2022-10-28 13:50:13
* @FilePath: /swx/src/pages/activityDetail/index.vue
* @Description: 活动详情页
-->
......@@ -24,10 +24,10 @@
<view class="box">
<view class="border">
<van-row>
<van-col span="7">
<van-col span="7" offset="0">
<text class="label">主办方:</text>
</van-col>
<van-col span="17">
<van-col span="17" offset="0">
<text class="value">{{ host.name }}</text>
</van-col>
</van-row>
......@@ -36,10 +36,10 @@
<view class="box">
<view class="border">
<van-row>
<van-col span="7">
<van-col span="7" offset="0">
<text class="label">活动时间:</text>
</van-col>
<van-col span="17">
<van-col span="17" offset="0">
<text class="value">{{ formatDate(activity.activity_time) }}</text>
</van-col>
</van-row>
......@@ -48,10 +48,10 @@
<view class="box">
<view class="border">
<van-row>
<van-col span="7">
<van-col span="7" offset="0">
<text class="label">活动方式:</text>
</van-col>
<van-col span="17">
<van-col span="17" offset="0">
<text v-if="activity.mode === 'offline'" class="value">现场活动</text>
<text v-if="activity.mode === 'online'" class="value">线上活动</text>
</van-col>
......@@ -61,10 +61,10 @@
<view class="box">
<view class="border">
<van-row>
<van-col span="7">
<van-col span="7" offset="0">
<text class="label">活动地址:</text>
</van-col>
<van-col span="17">
<van-col span="17" offset="0">
<text class="value">{{ activity.address }}</text>
</van-col>
</van-row>
......@@ -73,10 +73,10 @@
<view class="box">
<view class="border">
<van-row>
<van-col span="7">
<van-col span="7" offset="0">
<text class="label">报名开始时间:</text>
</van-col>
<van-col span="17">
<van-col span="17" offset="0">
<text class="value">{{ formatDate(activity.reg_begin_time) }}</text>
</van-col>
</van-row>
......@@ -85,10 +85,10 @@
<view class="box">
<view class="border">
<van-row>
<van-col span="7">
<van-col span="7" offset="0">
<text class="label">报名截止时间:</text>
</van-col>
<van-col span="17">
<van-col span="17" offset="0">
<text class="value">{{ formatDate(activity.reg_end_time) }}</text>
</van-col>
</van-row>
......