Commit 5b3f6fea228b58ea482b5ecffbd2b38262e3ba78

Authored by WXD-SEASON\season
1 parent e609d99e

优惠券使用说明

packageA/pages/quan_list/quan_list.wxml
... ... @@ -17,7 +17,9 @@
17 17 <!-- 右边 -->
18 18 <view class="right fs24 co_g pding" style="background-image:url({{iurl}}/miniapp/images/coupon_img/white.png); position: relative">
19 19 <view class="fs28 co_b" style="margin-top: 15rpx">{{item.name}}</view>
20   - <view style="margin-top: 5rpx">所有门店通用</view>
  20 +
  21 + <view style="margin-top: 5rpx" wx:if="{{item.coupon_remark!=null && item.coupon_remark!=''}}">{{item.coupon_remark}}</view>
  22 + <view style="margin-top: 5rpx" wx:else>所有门店通用</view>
21 23 <view wx:if="{{item.endtype==0}}">有效期
22 24 <text wx:if="{{item.starttype==1}}">{{filters.format_time(getcurday+3600*24*item.startdays)}}</text>
23 25 <text wx:if="{{item.starttype==0 && item.use_start_time>0}}"> {{filters.format_time(item.use_start_time)}}</text>至
... ...
packageA/pages/quan_pro/quan_pro.wxml
... ... @@ -13,9 +13,10 @@
13 13 <image style="width: 70rpx; height: 70rpx; vertical-align: middle; margin-right: 20rpx" src="{{iurl}}/miniapp/images/coupon_img/coupon_logo.png"></image>
14 14 {{q_data.name}}
15 15 </view>
16   - <view class="flex ai-center" style="margin-top: 24rpx; margin-right: 20rpx; width: 440rpx"><view class="t_circle"></view>
  16 + <view class="flex ai-center" style="margin-top: 24rpx; margin-right: 20rpx; width: 440rpx"><view class="t_circle"></view>
17 17 <text wx:if="{{q_data.useobjecttype==0}}">全场通用</text>
18 18 <text wx:else>仅限{{q_data.useobjectname}}使用</text>
  19 + <text>{{q_data.coupon_remark}}</text>
19 20 </view>
20 21 </view>
21 22 <view class="right" style="margin-right: 80rpx;">
... ...