Authored by lea guo

yohood原价购

@@ -65,7 +65,7 @@ Component({ @@ -65,7 +65,7 @@ Component({
65 * 组件的初始数据 65 * 组件的初始数据
66 */ 66 */
67 data: { 67 data: {
68 - show: true, 68 + show: false,
69 code: '', 69 code: '',
70 error: false, 70 error: false,
71 fellow: false, 71 fellow: false,
@@ -19,9 +19,6 @@ @@ -19,9 +19,6 @@
19 <block wx:elif="{{status === 6}}"> 19 <block wx:elif="{{status === 6}}">
20 <view class="action-item over">已结束</view> 20 <view class="action-item over">已结束</view>
21 </block> 21 </block>
22 - <block wx:else>  
23 - <view class="action-item over">已结束</view>  
24 - </block>  
25 </view> 22 </view>
26 <new-lucky-alert wx:if="{{show}}" bindhiddenalert="hiddenAlert"> 23 <new-lucky-alert wx:if="{{show}}" bindhiddenalert="hiddenAlert">
27 <view class="code-alert"> 24 <view class="code-alert">
@@ -30,18 +30,16 @@ @@ -30,18 +30,16 @@
30 </view> 30 </view>
31 </view> 31 </view>
32 </view> 32 </view>
33 -<!-- <view class="line"></view>  
34 -<more wx:if="{{recommends.length > 0}}">  
35 - <block wx:for="{{recommends}}" wx:key="{{index}}">  
36 - <view class="product-item">  
37 - <product-item product="{{item}}" tab-idx="{{tabIdx - 1}}"></product-item> 33 +<view class="fellow-bar" wx:if="{{product.status && !shareFlag}}">
  34 + <block wx:if="{{product.status === 3}}">
  35 + <view class="endTip">
  36 + <text>{{notice.content || '本场活动已结束,请关注开奖消息通知'}}</text>
38 </view> 37 </view>
39 </block> 38 </block>
40 -</more> -->  
41 -<view class="fellow-bar" wx:if="{{product.status && !shareFlag}}"> 39 + <block wx:else>
42 <fellow-bar notice="{{notice}}"></fellow-bar> 40 <fellow-bar notice="{{notice}}"></fellow-bar>
  41 + </block>
43 </view> 42 </view>
44 -<!-- <group-recommend groupRecommendList="{{groupList}}" bindgoToGroupMiniApp="goToGroupMiniApp"></group-recommend> -->  
45 <view class="action-bar"> 43 <view class="action-bar">
46 <action-bar start-time="{{product.end_time}}" wx:if="{{isLogin}}" status="{{actionStatus}}" num="{{myPrizeCount}}" share-uid="{{shareUid}}" act-prize-id="{{actPrizeId}}" bindgetcode="changeActionStatus" bindshare="share" copyText="{{lottery.miniappCopy}}" text="{{lottery.miniappTip}}" bindgaincodesuccess="reportSuccess" type="{{lottery.miniappType}}"></action-bar> 44 <action-bar start-time="{{product.end_time}}" wx:if="{{isLogin}}" status="{{actionStatus}}" num="{{myPrizeCount}}" share-uid="{{shareUid}}" act-prize-id="{{actPrizeId}}" bindgetcode="changeActionStatus" bindshare="share" copyText="{{lottery.miniappCopy}}" text="{{lottery.miniappTip}}" bindgaincodesuccess="reportSuccess" type="{{lottery.miniappType}}"></action-bar>
47 <block wx:else> 45 <block wx:else>
@@ -235,3 +235,13 @@ @@ -235,3 +235,13 @@
235 align-items: center; 235 align-items: center;
236 justify-content: space-between; 236 justify-content: space-between;
237 } 237 }
  238 +.endTip {
  239 + background-color: #999999;
  240 + height: 80rpx;
  241 + color: #ffffff;
  242 + display: flex;
  243 + align-items: center;
  244 + padding-left: 30rpx;
  245 + font-size: 28rpx;
  246 + letter-spacing: -0.34rpx;
  247 +}