1234567891011121314151617181920212223242526 |
- <view class="layer">
- <auth bindlogin="onShow" />
-
- <view class="content">
- <view class="title">{{info.name}}</view>
- <view class="desc">适用渠道:{{info.brandName}}</view>
- <view class="desc">有效期:{{info.useStartDate}}-{{info.useEndDate}}</view>
- <view class="ctrl">
- <view class="money"><text>¥</text>{{info.typeMoney || 0}}</view>
- <view class="btn">
- {{
- info.sendType == 0 ? '全场赠券' :
- info.sendType == 1 ? '会员赠券' :
- info.sendType == 2 ? '购物赠券' :
- info.sendType == 3 ? '注册赠' : ''
- }}
- </view>
- </view>
- </view>
- <view class="explain">
- <view class="title"><text>使用说明</text></view>
- <view class="desc">{{info.useDesc || '暂无说明'}}</view>
- </view>
- </view>
|