合完了
This commit is contained in:
parent
a1615640c4
commit
df093ceb70
|
@ -94,9 +94,9 @@
|
|||
|
||||
|
||||
|
||||
const flushCouponListHandler = () => {
|
||||
getMyCouponList()
|
||||
}
|
||||
// const flushCouponListHandler = () => {
|
||||
// getMyCouponList()
|
||||
// }
|
||||
|
||||
const getTotalPriceHandler = (val) => {
|
||||
totalAmount = val
|
||||
|
@ -107,13 +107,13 @@
|
|||
|
||||
onMounted(() => {
|
||||
emitter.on('getTotalPrice', getTotalPriceHandler)
|
||||
emitter.on('flushCouponList', flushCouponListHandler)
|
||||
// emitter.on('flushCouponList', flushCouponListHandler)
|
||||
})
|
||||
|
||||
onUnmounted(() => {
|
||||
uni.removeStorageSync('couponMap')
|
||||
emitter.off('getTotalPrice', getTotalPriceHandler)
|
||||
emitter.off('flushCouponList', flushCouponListHandler)
|
||||
// emitter.off('flushCouponList', flushCouponListHandler)
|
||||
})
|
||||
|
||||
|
||||
|
@ -163,29 +163,31 @@
|
|||
|
||||
|
||||
const getMyCouponList = async () => {
|
||||
couponMap = uni.getStorageSync('couponMap')
|
||||
console.log('读缓存======================>', couponMap)
|
||||
if (couponMap) {
|
||||
if (isShow.value) myCouponList.value = couponMap['可用']
|
||||
else myCouponList.value = couponMap['不可用']
|
||||
checkedArr.value = new Array(myCouponList.value.length).fill(false)
|
||||
return
|
||||
}
|
||||
// couponMap = uni.getStorageSync('couponMap')
|
||||
// console.log('读缓存======================>', couponMap)
|
||||
// if (couponMap) {
|
||||
// if (isShow.value) myCouponList.value = couponMap['可用']
|
||||
// else myCouponList.value = couponMap['不可用']
|
||||
// checkedArr.value = new Array(myCouponList.value.length).fill(false)
|
||||
// return
|
||||
// }
|
||||
const res = await uni.request({
|
||||
url: baseUrl + '/coupon/list/all/own',
|
||||
url: baseUrl + '/coupon/list/use',
|
||||
method: 'POST',
|
||||
header: {
|
||||
cookie
|
||||
},
|
||||
data: {
|
||||
currentAmount: totalAmount
|
||||
currentAmount: totalAmount,
|
||||
isAvailable: isShow.value
|
||||
}
|
||||
})
|
||||
console.log('发请求=====================>', res.data.data)
|
||||
couponMap = res.data.data
|
||||
uni.setStorageSync('couponMap', couponMap)
|
||||
if (isShow.value) myCouponList.value = couponMap['可用']
|
||||
else myCouponList.value = couponMap['不可用']
|
||||
// console.log('发请求=====================>', res.data.data)
|
||||
// couponMap = res.data.data
|
||||
// uni.setStorageSync('couponMap', couponMap)
|
||||
// if (isShow.value) myCouponList.value = couponMap['可用']
|
||||
// else myCouponList.value = couponMap['不可用']
|
||||
myCouponList.value = res.data.data
|
||||
checkedArr.value = new Array(myCouponList.value.length).fill(false)
|
||||
}
|
||||
|
||||
|
|
|
@ -413,6 +413,7 @@ const wxPay = async( oid )=> { //传入订单id
|
|||
showLoading()
|
||||
debounceTimer = setTimeout(async () => {
|
||||
await getMyCouponList()
|
||||
emitter.emit('flushCouponListHandler')
|
||||
hideLoading()
|
||||
}, 1000)
|
||||
}
|
||||
|
|
|
@ -455,6 +455,7 @@
|
|||
showLoading()
|
||||
debounceTimer = setTimeout(async () => {
|
||||
await getMyCouponList()
|
||||
emitter.emit('flushCouponList')
|
||||
hideLoading()
|
||||
}, 1000)
|
||||
}
|
||||
|
|
|
@ -310,6 +310,7 @@ const updateAddressHandler = (val) => {
|
|||
showLoading()
|
||||
debounceTimer = setTimeout(async () => {
|
||||
await getMyCouponList()
|
||||
emitter.emit('flushCouponList')
|
||||
hideLoading()
|
||||
}, 1000)
|
||||
}
|
||||
|
|
|
@ -452,6 +452,7 @@
|
|||
showLoading()
|
||||
debounceTimer = setTimeout(async () => {
|
||||
await getMyCouponList()
|
||||
// emitter.emit('flushCouponList')
|
||||
hideLoading()
|
||||
}, 1000)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user