|
@@ -38,7 +38,7 @@
|
|
|
</view>
|
|
|
<view class="choose-content">
|
|
|
<view class="choose-item">
|
|
|
- <view class="item">
|
|
|
+ <view class="item" @click="intoChooseCoupon">
|
|
|
<text>优惠卷</text>
|
|
|
<view class="right">
|
|
|
<u-icon name="gift" color="rgb(255,0,0)" size="32"></u-icon>
|
|
@@ -130,9 +130,17 @@
|
|
|
this.stepIndex = this.stepIndex===0 ? 1 : 2
|
|
|
uni.setStorageSync('stepIndex', this.stepIndex)
|
|
|
},
|
|
|
+ // 已阅读
|
|
|
read (e) {
|
|
|
this.isRead = e.msg
|
|
|
},
|
|
|
+ // 选择优惠券
|
|
|
+ intoChooseCoupon () {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/coupon/chooseCoupon/chooseCoupon'
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 打开服务协议
|
|
|
intoAgreement () {
|
|
|
uni.navigateTo({
|
|
|
url: '/pages/agreement/agreement'
|