|
@@ -2,29 +2,28 @@
|
|
|
<view wx:if="{{showPage}}">
|
|
|
|
|
|
<custom-page head-bg-image="{{activity.themePic}}" bind:sizes="handlePageSizes">
|
|
|
- <topbar slot="head" title="签到中心" topbar-title-class="title-color" back-color-class="title-color" />
|
|
|
+ <topbar slot="head" title="签到中心" back-color="{{mainColor}}" title-color="{{mainColor}}" />
|
|
|
<!-- 页面主体 -->
|
|
|
<view slot="body" class="sign-scroll-body">
|
|
|
- <view class="sign-info-extra">
|
|
|
+ <view class="sign-info-extra" style="color: {{mainColor}};">
|
|
|
<view class="coupon_num_box">
|
|
|
- <view class="my_coupon_title">签到优惠券</view>
|
|
|
- <view class="_num_arear">
|
|
|
- <text class="_num">{{notUseNum}}</text>
|
|
|
- <text class="_unit">张</text>
|
|
|
- <view class="_btn" wx:if="{{notUseNum > 0}}">
|
|
|
- <jumpmallapp>去使用</jumpmallapp>
|
|
|
+ <view class="my_coupon_title">签到优惠券</view>
|
|
|
+ <view class="_num_arear">
|
|
|
+ <text class="_num">{{notUseNum}}</text>
|
|
|
+ <text class="_unit">张</text>
|
|
|
+ <view class="_btn" style="border-color: {{mainColor}};" wx:if="{{notUseNum > 0}}">
|
|
|
+ <jumpmallapp>去使用</jumpmallapp>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="_look_btn" catchtap="toRecordDetailPage">明细 | 查看</view>
|
|
|
+ <view class="_look_btn" catchtap="toRecordDetailPage">明细 | 查看</view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<!-- 签到卡片 -->
|
|
|
- <view class="sign-card-box">
|
|
|
+ <view class="sign-card-box" style="border-color: {{thirdColor}};">
|
|
|
<view class="sign-item-box">
|
|
|
<view class="_left">
|
|
|
<view class="_item" wx:for="{{signInNodes}}" wx:key="index" >
|
|
|
<image class="_figure" src="{{item.figure}}" mode="aspectFill" />
|
|
|
- <view class="_no" style="{{item.textBgGround}}">{{item.text}}</view>
|
|
|
<image wx:if="{{item.isSignIn == -1}}" class="_lose_sign_in" src="/images/signIn/losesign.png" />
|
|
|
<image wx:if="{{item.isSignIn == 1}}" class="_finish_sign_in" src="/images/signIn/finishsign.png" />
|
|
|
</view>
|
|
@@ -32,7 +31,6 @@
|
|
|
<view class="_right">
|
|
|
<view class="_item">
|
|
|
<image class="_figure" src="{{lastSignInNode.figure}}" mode="aspectFill" />
|
|
|
- <view class="_no" style="{{lastSignInNode.textBgGround}}">{{lastSignInNode.text}}</view>
|
|
|
<image wx:if="{{lastSignInNode.isSignIn == -1}}" class="_lose_sign_in" src="/images/signIn/losesign.png" />
|
|
|
<image wx:if="{{lastSignInNode.isSignIn == 1}}" class="_finish_sign_in" src="/images/signIn/finishsign.png" />
|
|
|
</view>
|
|
@@ -40,7 +38,7 @@
|
|
|
</view>
|
|
|
|
|
|
<block wx:if="{{todayIsSigned}}">
|
|
|
- <view class="_sign_in_btn">今日已签到</view>
|
|
|
+ <view class="_sign_in_btn" style="background-color:{{thirdColor}};">今日已签到</view>
|
|
|
</block>
|
|
|
<block wx:else>
|
|
|
<view class="_sign_in_btn" style="{{backGroundStyle}}" catchtap="tapSignIn">
|