闫增涛
2024-03-06 21f34f1fc290cd129d24df2b25025e47e6ac028a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!-- 优惠券 -->
<view class="coupon-card-wrap">
  <coupon-card couponDTO="{{detail}}" />
</view>
<!-- 说明 -->
<view class="desc-wrap">
  <t-cell-group t-class="desc-group-wrap">
    <t-cell
      wx:if="{{detail && detail.desc}}"
      t-class="t-class-cell"
      t-class-title="t-class-title"
      t-class-note="t-class-note"
      title="规则说明"
      note="{{detail && detail.desc}}"
    />
    <t-cell
      wx:if="{{detail && detail.timeLimit}}"
      t-class="t-class-cell"
      t-class-title="t-class-title"
      t-class-note="t-class-note"
      title="有效时间"
      note="{{detail && detail.timeLimit}}"
    />
    <t-cell
      wx:if="{{detail && detail.storeAdapt}}"
      t-class="t-class-cell"
      t-class-title="t-class-title"
      t-class-note="t-class-note"
      title="适用范围"
      note="{{detail && detail.storeAdapt}}"
    />
    <t-cell
      wx:if="{{detail && detail.useNotes}}"
      t-class="t-class-cell"
      t-class-title="t-class-title"
      t-class-note="t-class-note"
      title="使用须知"
      note="{{detail && detail.useNotes}}"
    />
  </t-cell-group>
  <!-- 查看可用商品 -->
  <view class="button-wrap">
    <t-button shape="round" block bindtap="navGoodListHandle"> 查看可用商品 </t-button>
  </view>
</view>