Authored by lea guo

yohood原价购

... ... @@ -65,7 +65,7 @@ Component({
* 组件的初始数据
*/
data: {
show: true,
show: false,
code: '',
error: false,
fellow: false,
... ...
... ... @@ -19,9 +19,6 @@
<block wx:elif="{{status === 6}}">
<view class="action-item over">已结束</view>
</block>
<block wx:else>
<view class="action-item over">已结束</view>
</block>
</view>
<new-lucky-alert wx:if="{{show}}" bindhiddenalert="hiddenAlert">
<view class="code-alert">
... ...
... ... @@ -30,18 +30,16 @@
</view>
</view>
</view>
<!-- <view class="line"></view>
<more wx:if="{{recommends.length > 0}}">
<block wx:for="{{recommends}}" wx:key="{{index}}">
<view class="product-item">
<product-item product="{{item}}" tab-idx="{{tabIdx - 1}}"></product-item>
<view class="fellow-bar" wx:if="{{product.status && !shareFlag}}">
<block wx:if="{{product.status === 3}}">
<view class="endTip">
<text>{{notice.content || '本场活动已结束,请关注开奖消息通知'}}</text>
</view>
</block>
</more> -->
<view class="fellow-bar" wx:if="{{product.status && !shareFlag}}">
<fellow-bar notice="{{notice}}"></fellow-bar>
<block wx:else>
<fellow-bar notice="{{notice}}"></fellow-bar>
</block>
</view>
<!-- <group-recommend groupRecommendList="{{groupList}}" bindgoToGroupMiniApp="goToGroupMiniApp"></group-recommend> -->
<view class="action-bar">
<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>
<block wx:else>
... ...
... ... @@ -235,3 +235,13 @@
align-items: center;
justify-content: space-between;
}
.endTip {
background-color: #999999;
height: 80rpx;
color: #ffffff;
display: flex;
align-items: center;
padding-left: 30rpx;
font-size: 28rpx;
letter-spacing: -0.34rpx;
}
... ...