Authored by lea guo

yohood抽奖原价购

... ... @@ -27,7 +27,7 @@
<view class="product_name">{{product.name}}</view>
<view class="product_lucky_bg">
<view class="product_lucky">
<text>原价</text>
<text>原价</text>
<text class="price-info">{{product.lottery_price}}</text>
</view>
<view class="product_price">
... ...
... ... @@ -182,7 +182,7 @@ Page(
wx.showLoading({
mask: true,
});
this._init().then(() => {
this._init({isPulldown: true}).then(() => {
wx.stopPullDownRefresh();
});
},
... ... @@ -291,9 +291,10 @@ Page(
});
},
_init() {
_init(options = {}) {
const { isPulldown } = options
let params = {
actPrizeId: this.data.actPrizeId,
actPrizeId: isPulldown ? '' : this.data.actPrizeId,
};
return this.service
... ...
... ... @@ -6,7 +6,7 @@
<text>活动流程</text>
<help url="https://activity.yoho.cn/feature/5901.html" text="活动规则" title="原价购活动说明"></help>
</view>
<image mode="aspectFill" class="jion-tips-image" src="https://cdn.yoho.cn/o_1dhlc14l11pm01c8q6p01ur718at8.png"></image>
<image mode="aspectFill" class="jion-tips-image" src="https://cdn.yoho.cn/o_1dhq2n6551qc5djrv5v1geekcq8.png"></image>
</view>
<view class="machine {{shareFlag ? 'machine-t-m' : 'machine-t-l'}}">
<view class="open-shadow"></view>
... ... @@ -32,7 +32,7 @@
<view class="fellow-bar" wx:if="{{product.status && !shareFlag}}">
<block wx:if="{{product.status >= 3}}">
<view class="endTip">
<text>{{notice.content || '本场活动已结束,请关注开奖消息通知'}}</text>
<text>{{notice.content || '本场活动已结束,请关注中奖结果通知'}}</text>
</view>
</block>
<block wx:elif="{{notice.content}}">
... ...