合完了

This commit is contained in:
chen-xin-zhi 2025-03-19 21:29:37 +08:00
parent a1615640c4
commit df093ceb70
5 changed files with 26 additions and 20 deletions

View File

@ -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)
}

View File

@ -413,6 +413,7 @@ const wxPay = async( oid )=> { //传入订单id
showLoading()
debounceTimer = setTimeout(async () => {
await getMyCouponList()
emitter.emit('flushCouponListHandler')
hideLoading()
}, 1000)
}

View File

@ -455,6 +455,7 @@
showLoading()
debounceTimer = setTimeout(async () => {
await getMyCouponList()
emitter.emit('flushCouponList')
hideLoading()
}, 1000)
}

View File

@ -310,6 +310,7 @@ const updateAddressHandler = (val) => {
showLoading()
debounceTimer = setTimeout(async () => {
await getMyCouponList()
emitter.emit('flushCouponList')
hideLoading()
}, 1000)
}

View File

@ -452,6 +452,7 @@
showLoading()
debounceTimer = setTimeout(async () => {
await getMyCouponList()
// emitter.emit('flushCouponList')
hideLoading()
}, 1000)
}