['核销记录优惠券核销和权证核销']

This commit is contained in:
2021-09-18 17:17:38 +08:00
parent bb083ee368
commit 17074af70d
8 changed files with 4407 additions and 2849 deletions

View File

@@ -9,7 +9,7 @@
<view class="goods" @click="scanCode('goods','get')"> 权证核销 </view>
<view class="coupons" @click="scanCode('coupons','get')"> 优惠券核销 </view>
</view>
<view class="history">核销记录</view>
<view class="history" @click="goHistory">核销记录</view>
<u-toast ref="uToast" />
<!-- 二维码展示动画效果 -->
@@ -74,7 +74,7 @@
}
});
},
// 请求核销前置,优惠券前置和权证前置
// 请求核销前置,优惠券前置和权证前置get post 是核销
scanInfo(token, method) {
console.log(token, this.scanType)
let apiUrl = ''
@@ -122,7 +122,8 @@
success: (res1) => {
if (res1.confirm) {
uni.navigateTo({
url:'/pages/property/coupon/canUseList?code='+this.code
url: '/pages/property/coupon/canUseList?code=' +
this.code
})
} else {
this.showCode = true
@@ -145,6 +146,12 @@
})
this.showCode = false
})
},
// 核销记录
goHistory() {
uni.navigateTo({
url:'/pages/verification/history'
})
}
}
}