hookehuyr

fix

1 <!-- 1 <!--
2 * @Date: 2022-09-26 14:36:57 2 * @Date: 2022-09-26 14:36:57
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2022-10-28 13:48:22 4 + * @LastEditTime: 2022-10-28 13:50:13
5 * @FilePath: /swx/src/pages/activityDetail/index.vue 5 * @FilePath: /swx/src/pages/activityDetail/index.vue
6 * @Description: 活动详情页 6 * @Description: 活动详情页
7 --> 7 -->
...@@ -24,10 +24,10 @@ ...@@ -24,10 +24,10 @@
24 <view class="box"> 24 <view class="box">
25 <view class="border"> 25 <view class="border">
26 <van-row> 26 <van-row>
27 - <van-col span="7"> 27 + <van-col span="7" offset="0">
28 <text class="label">主办方:</text> 28 <text class="label">主办方:</text>
29 </van-col> 29 </van-col>
30 - <van-col span="17"> 30 + <van-col span="17" offset="0">
31 <text class="value">{{ host.name }}</text> 31 <text class="value">{{ host.name }}</text>
32 </van-col> 32 </van-col>
33 </van-row> 33 </van-row>
...@@ -36,10 +36,10 @@ ...@@ -36,10 +36,10 @@
36 <view class="box"> 36 <view class="box">
37 <view class="border"> 37 <view class="border">
38 <van-row> 38 <van-row>
39 - <van-col span="7"> 39 + <van-col span="7" offset="0">
40 <text class="label">活动时间:</text> 40 <text class="label">活动时间:</text>
41 </van-col> 41 </van-col>
42 - <van-col span="17"> 42 + <van-col span="17" offset="0">
43 <text class="value">{{ formatDate(activity.activity_time) }}</text> 43 <text class="value">{{ formatDate(activity.activity_time) }}</text>
44 </van-col> 44 </van-col>
45 </van-row> 45 </van-row>
...@@ -48,10 +48,10 @@ ...@@ -48,10 +48,10 @@
48 <view class="box"> 48 <view class="box">
49 <view class="border"> 49 <view class="border">
50 <van-row> 50 <van-row>
51 - <van-col span="7"> 51 + <van-col span="7" offset="0">
52 <text class="label">活动方式:</text> 52 <text class="label">活动方式:</text>
53 </van-col> 53 </van-col>
54 - <van-col span="17"> 54 + <van-col span="17" offset="0">
55 <text v-if="activity.mode === 'offline'" class="value">现场活动</text> 55 <text v-if="activity.mode === 'offline'" class="value">现场活动</text>
56 <text v-if="activity.mode === 'online'" class="value">线上活动</text> 56 <text v-if="activity.mode === 'online'" class="value">线上活动</text>
57 </van-col> 57 </van-col>
...@@ -61,10 +61,10 @@ ...@@ -61,10 +61,10 @@
61 <view class="box"> 61 <view class="box">
62 <view class="border"> 62 <view class="border">
63 <van-row> 63 <van-row>
64 - <van-col span="7"> 64 + <van-col span="7" offset="0">
65 <text class="label">活动地址:</text> 65 <text class="label">活动地址:</text>
66 </van-col> 66 </van-col>
67 - <van-col span="17"> 67 + <van-col span="17" offset="0">
68 <text class="value">{{ activity.address }}</text> 68 <text class="value">{{ activity.address }}</text>
69 </van-col> 69 </van-col>
70 </van-row> 70 </van-row>
...@@ -73,10 +73,10 @@ ...@@ -73,10 +73,10 @@
73 <view class="box"> 73 <view class="box">
74 <view class="border"> 74 <view class="border">
75 <van-row> 75 <van-row>
76 - <van-col span="7"> 76 + <van-col span="7" offset="0">
77 <text class="label">报名开始时间:</text> 77 <text class="label">报名开始时间:</text>
78 </van-col> 78 </van-col>
79 - <van-col span="17"> 79 + <van-col span="17" offset="0">
80 <text class="value">{{ formatDate(activity.reg_begin_time) }}</text> 80 <text class="value">{{ formatDate(activity.reg_begin_time) }}</text>
81 </van-col> 81 </van-col>
82 </van-row> 82 </van-row>
...@@ -85,10 +85,10 @@ ...@@ -85,10 +85,10 @@
85 <view class="box"> 85 <view class="box">
86 <view class="border"> 86 <view class="border">
87 <van-row> 87 <van-row>
88 - <van-col span="7"> 88 + <van-col span="7" offset="0">
89 <text class="label">报名截止时间:</text> 89 <text class="label">报名截止时间:</text>
90 </van-col> 90 </van-col>
91 - <van-col span="17"> 91 + <van-col span="17" offset="0">
92 <text class="value">{{ formatDate(activity.reg_end_time) }}</text> 92 <text class="value">{{ formatDate(activity.reg_end_time) }}</text>
93 </van-col> 93 </van-col>
94 </van-row> 94 </van-row>
......