|
@@ -7,6 +7,16 @@
|
7
|
7
|
<!-- 活动主要信息 -->
|
8
|
8
|
<view class="MainInfo">
|
9
|
9
|
<text>{{ActivityInfo.name}}</text>
|
|
10
|
+ <view class="SubInfo flex-h">
|
|
11
|
+ <view class="flex-item">
|
|
12
|
+ <text class="iconfont iconxianshi"></text>
|
|
13
|
+ <text>{{ActivityInfo.pv || ''}}</text>
|
|
14
|
+ </view>
|
|
15
|
+ <view class="Time">
|
|
16
|
+ <text class="iconfont iconshijian"></text>
|
|
17
|
+ <text>{{ToolClass.DateFormat(new Date(ActivityInfo.createDate).getTime())}}</text>
|
|
18
|
+ </view>
|
|
19
|
+ </view>
|
10
|
20
|
<view class="Line flex-h">
|
11
|
21
|
<text>活动时间:</text>
|
12
|
22
|
<text class="flex-item">{{ToolClass.DateFormat(new Date(ActivityInfo.startDate).getTime())}} 至 {{ToolClass.DateFormat(new Date(ActivityInfo.endDate).getTime())}}</text>
|