Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
swx_weapp
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
hookehuyr
2022-10-28 13:53:39 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9ccf9e983c46b507f3e3780faec919cbca0c6412
9ccf9e98
1 parent
8d31b8e1
fix
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
src/pages/activityDetail/index.vue
src/pages/activityDetail/index.vue
View file @
9ccf9e9
<!--
* @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>
...
...
Please
register
or
login
to post a comment