|
|
|
|
<view
|
|
|
|
|
class="page"
|
|
|
|
|
id="{{theme === 'DRUG' && 'drug-page'}}"
|
|
|
|
|
style="background: url('{{imageUrl}}{{theme === 'DRUG' ? 'bg25' : 'bg16'}}.png?t={{Timestamp}}') no-repeat top center/100% 418rpx;padding-top: {{pageTop+30}}px;"
|
|
|
|
|
>
|
|
|
|
|
<navBar color="" background="{{background}}" fixed title="" iconTheme="white" back bind:back="handleBack"></navBar>
|
|
|
|
|
<view class="title">
|
|
|
|
|
<view class="status {{detail.IsSignUp != 1 && 'unsigned'}}">{{detail.IsSignUp==1 ? '已报名' : '未报名'}}</view>
|
|
|
|
|
{{detail.Name}}
|
|
|
|
|
</view>
|
|
|
|
|
<view class="page-container">
|
|
|
|
|
<view class="module">
|
|
|
|
|
<view class="info">活动时间 {{detail.BeginTime}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view
|
|
|
|
|
class="module"
|
Remove gift shop pages and update image refs
- Remove 11 gift/points shop pages (giftList, giftDetail,
conformOrder, siteList, siteEdit, orderEnd, orderDetail,
myGift, priceDetail, scoreRule, dtpDurg) from gift subpackage
- Replace local /images/ paths with {{imageUrl}} + Timestamp
- Rename project from "愈见昕生" to "gMG给力
2 days ago
|
|
|
style="background: #fff url('{{imageUrl}}{{theme === 'DRUG' ? 'icon73' : 'icon74'}}.png?t={{Timestamp}}') no-repeat bottom 0 right 24rpx/88rpx 88rpx;"
|
|
|
|
|
>
|
|
|
|
|
<view class="info">主讲人:{{detail.MasterName}} {{detail.MasterTitle}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="content" wx:if="{{detail.DetailJson.length}}">
|
|
|
|
|
<view class="c-title">活动介绍</view>
|
|
|
|
|
<image class="c-img" mode="widthFix" src="{{item.url}}" wx:for="{{detail.DetailJson}}" wx:key="name"></image>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="footer">
|
|
|
|
|
<view class="countdown" wx:if="{{showCountDown}}">
|
|
|
|
|
<view class="countdown-label">开始倒计时</view>
|
|
|
|
|
<view class="countdown-boxes">
|
|
|
|
|
<view class="countdown-item">
|
|
|
|
|
<view class="countdown-num">{{countDown.days}}</view>
|
|
|
|
|
<view class="countdown-unit">天</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="countdown-item">
|
|
|
|
|
<view class="countdown-num">{{countDown.hours}}</view>
|
|
|
|
|
<view class="countdown-unit">时</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="countdown-item">
|
|
|
|
|
<view class="countdown-num">{{countDown.minutes}}</view>
|
|
|
|
|
<view class="countdown-unit">分</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="countdown-item">
|
|
|
|
|
<view class="countdown-num">{{countDown.seconds}}</view>
|
|
|
|
|
<view class="countdown-unit">秒</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<block>
|
|
|
|
|
<view class="btn ended" wx:if="{{detail.Status==3 || detail.Status==99 || detail.Status==100}}">已结束</view>
|
|
|
|
|
<view
|
|
|
|
|
class="btn"
|
|
|
|
|
wx:elif="{{detail.IsSignUp==1 && detail.BeginTimeValue * 1 <= dateValue * 1}}"
|
|
|
|
|
bind:tap="handleLive"
|
|
|
|
|
>
|
|
|
|
|
立即参与
|
|
|
|
|
</view>
|
|
|
|
|
<view class="btn signed" wx:elif="{{detail.IsSignUp==1}}" bind:tap="handleResult">已报名</view>
|
|
|
|
|
<view class="btn" wx:else bind:tap="handleSignUp">立即报名</view>
|
|
|
|
|
</block>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|