合完了

This commit is contained in:
chen-xin-zhi 2025-03-19 20:54:41 +08:00
parent f6edd09641
commit a1615640c4
10 changed files with 106 additions and 55 deletions

View File

@ -116,7 +116,8 @@
"path" : "pages/mine/main/main", "path" : "pages/mine/main/main",
"style" : "style" :
{ {
"navigationBarTitleText" : "" "navigationBarTitleText" : "",
"enablePullDownRefresh":true //
} }
}, },
{ {

View File

@ -46,11 +46,10 @@
<script setup lang="ts"> <script setup>
import {ref, onMounted, nextTick, onUnmounted} from 'vue' import {ref, onMounted, nextTick, onUnmounted} from 'vue'
import { baseUrl } from '@/api/request'; import { baseUrl } from '@/api/request';
import confirmPopupVue from '../component/confirmPopup.vue'; import confirmPopupVue from '../component/confirmPopup.vue';
import popupVue from '../../popup.vue';
import emitter from '../../../utils/emitter'; import emitter from '../../../utils/emitter';
import { couponUrl } from '../../../common/globalImagesUrl'; import { couponUrl } from '../../../common/globalImagesUrl';
import { onLoad } from "@dcloudio/uni-app"; import { onLoad } from "@dcloudio/uni-app";
@ -81,7 +80,7 @@
} }
onMounted(() => { onMounted(() => {
getMyUserInfo() getMyUserInfo()
getCouponList() getCouponList()
emitter.on('closeConfirmPopup', closeConfirmPopupHandler) emitter.on('closeConfirmPopup', closeConfirmPopupHandler)
@ -89,6 +88,8 @@
}) })
onUnmounted(() => { onUnmounted(() => {
emitter.emit('flushCouponList')
emitter.off('closeConfirmPopup', closeConfirmPopupHandler) emitter.off('closeConfirmPopup', closeConfirmPopupHandler)
emitter.off('confirmExchange', confirmExchangeHandler) emitter.off('confirmExchange', confirmExchangeHandler)
@ -122,7 +123,7 @@
}) })
} }
const exchangeCoupon = (val:any) => { const exchangeCoupon = (val) => {
coupon.value = val coupon.value = val
exchange.value.open('center') exchange.value.open('center')
} }

View File

@ -63,7 +63,7 @@
</view> </view>
</template> </template>
<script setup lang="ts"> <script setup>
import {onMounted, onUnmounted, ref} from 'vue' import {onMounted, onUnmounted, ref} from 'vue'
import emitter from '../../../utils/emitter'; import emitter from '../../../utils/emitter';
import { baseUrl } from '../../../api/request'; import { baseUrl } from '../../../api/request';
@ -78,9 +78,10 @@
const idx = ref(-1) const idx = ref(-1)
const isShow = ref(true) const isShow = ref(true)
const borderStyle = ref({}) const borderStyle = ref({})
let totalAmount = 0
const myCouponList = ref([]) const myCouponList = ref([])
const cookie = wx.getStorageSync("cookie") // const cookie = wx.getStorageSync("cookie") //
let totalAmount = 0
let couponMap = null
@ -93,10 +94,11 @@
const flushCouponListHandler = () => {
getMyCouponList()
}
const getTotalPriceHandler = (val) => {
const getTotalPriceHandler = (val:any) => {
totalAmount = val totalAmount = val
getMyCouponList() getMyCouponList()
} }
@ -105,14 +107,17 @@
onMounted(() => { onMounted(() => {
emitter.on('getTotalPrice', getTotalPriceHandler) emitter.on('getTotalPrice', getTotalPriceHandler)
emitter.on('flushCouponList', flushCouponListHandler)
}) })
onUnmounted(() => { onUnmounted(() => {
uni.removeStorageSync('couponMap')
emitter.off('getTotalPrice', getTotalPriceHandler) emitter.off('getTotalPrice', getTotalPriceHandler)
emitter.off('flushCouponList', flushCouponListHandler)
}) })
const changeStateLeft = (val:any) => { const changeStateLeft = (val) => {
if (!val) { if (!val) {
isShow.value = !isShow.value isShow.value = !isShow.value
borderStyle.value.borderBottom = 'solid 0px' borderStyle.value.borderBottom = 'solid 0px'
@ -120,7 +125,7 @@
} }
} }
const changeStateRight = (val:any) => { const changeStateRight = (val) => {
if (val) { if (val) {
isShow.value = !isShow.value isShow.value = !isShow.value
borderStyle.value.borderBottom = 'solid 1.88rpx #d9d9d9' borderStyle.value.borderBottom = 'solid 1.88rpx #d9d9d9'
@ -132,7 +137,7 @@
emitter.emit('closeCoupon') emitter.emit('closeCoupon')
} }
const selectOne = (val:any) => { const selectOne = (val) => {
if (!isShow.value) return if (!isShow.value) return
idx.value = val idx.value = val
for (var i = 0; i < checkedArr.value.length; i ++ ) { for (var i = 0; i < checkedArr.value.length; i ++ ) {
@ -158,23 +163,35 @@
const getMyCouponList = async () => { 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
}
const res = await uni.request({ const res = await uni.request({
url: baseUrl + '/coupon/list/use', url: baseUrl + '/coupon/list/all/own',
method: 'POST', method: 'POST',
header: { header: {
cookie cookie
}, },
data: { data: {
currentAmount: totalAmount, currentAmount: totalAmount
isAvailable: isShow.value
} }
}) })
myCouponList.value = res.data.data console.log('发请求=====================>', res.data.data)
couponMap = res.data.data
uni.setStorageSync('couponMap', couponMap)
if (isShow.value) myCouponList.value = couponMap['可用']
else myCouponList.value = couponMap['不可用']
checkedArr.value = new Array(myCouponList.value.length).fill(false) checkedArr.value = new Array(myCouponList.value.length).fill(false)
} }
const jumpToMall = () => { const jumpToMall = () => {
uni.removeStorageSync('couponMap')
uni.navigateTo({ uni.navigateTo({
url: '/pages/coupon/CouponMall/CouponMall' url: '/pages/coupon/CouponMall/CouponMall'
}) })

View File

@ -121,7 +121,17 @@ import { baseUrl } from '../../../api/request';
import { getFonts } from '../../../common/globalFont'; import { getFonts } from '../../../common/globalFont';
import { mineUrl } from '../../../common/globalImagesUrl'; import { mineUrl } from '../../../common/globalImagesUrl';
import { publicPath } from '../../../common/globalImagesUrl'; import { publicPath } from '../../../common/globalImagesUrl';
import { onPullDownRefresh } from '@dcloudio/uni-app';
const bkgUrl = ref(mineUrl + '/main/bkg.png') const bkgUrl = ref(mineUrl + '/main/bkg.png')
onPullDownRefresh( async ()=>{ //
await getMyUser()
setTimeout(()=>{
uni.stopPullDownRefresh() //
},1000)
})
onLoad(() => { onLoad(() => {
getFonts() //使 getFonts() //使
}) })
@ -206,12 +216,14 @@ const onChooseAvatar = (e) => {
url: baseUrl + '/file/uploadFile', url: baseUrl + '/file/uploadFile',
filePath: tempFile, filePath: tempFile,
name: 'file', name: 'file',
formData: {
biz: 'user_avatar'
},
header: { header: {
cookie cookie
}, },
success: (res) => { success: (res) => {
myAvatar.value = JSON.parse(res.data).data.url myAvatar.value = JSON.parse(res.data).data
console.log(myAvatar.value)
updateMyUser() updateMyUser()
}, },
fail: (e) => { fail: (e) => {

View File

@ -136,6 +136,7 @@
import emitter from '../../../utils/emitter'; import emitter from '../../../utils/emitter';
import { myOrderUrl } from '../../../common/globalImagesUrl.js'; import { myOrderUrl } from '../../../common/globalImagesUrl.js';
import { publicPath } from '../../../common/globalImagesUrl.js'; import { publicPath } from '../../../common/globalImagesUrl.js';
import { onPullDownRefresh } from '@dcloudio/uni-app';
const bkgUrl = ref(myOrderUrl + '/myGeneralOrderDetail/bkg.png') const bkgUrl = ref(myOrderUrl + '/myGeneralOrderDetail/bkg.png')
const order = ref({}) const order = ref({})
const cookie = wx.getStorageSync('cookie') const cookie = wx.getStorageSync('cookie')
@ -161,6 +162,13 @@
getOrderById(orderId) getOrderById(orderId)
}) })
onPullDownRefresh( async ()=>{ //
await getOrderById(orderId)
setTimeout(()=>{
uni.stopPullDownRefresh() //
},1000)
})
const getOrderById = async (val) => { const getOrderById = async (val) => {

View File

@ -133,6 +133,7 @@
import { getFonts } from '../../../common/globalFont'; import { getFonts } from '../../../common/globalFont';
import { myOrderUrl } from '../../../common/globalImagesUrl'; import { myOrderUrl } from '../../../common/globalImagesUrl';
import { publicPath } from '../../../common/globalImagesUrl'; import { publicPath } from '../../../common/globalImagesUrl';
import { onPullDownRefresh } from '@dcloudio/uni-app';
const color = ref(new Array(5).fill('#323232')) const color = ref(new Array(5).fill('#323232'))
const point = ref(0) const point = ref(0)
const isShowUnderLine = ref([true, false, false, false, false]) const isShowUnderLine = ref([true, false, false, false, false])
@ -163,6 +164,7 @@
} }
status.value = options.status status.value = options.status
}) })
onMounted(() => { onMounted(() => {
color.value[0] = '#e79ea1' color.value[0] = '#e79ea1'
@ -171,11 +173,24 @@
} else { } else {
getMyOrder() getMyOrder()
} }
emitter.on('flushOrderList', flushOrderList) emitter.on('flushOrderList', flushOrderList)
}) })
onPullDownRefresh( async ()=>{ //
color.value[0] = '#e79ea1'
if (!JudgeIsNullity(status.value)) {
getMyStatusOrder(Number(status.value))
} else {
getMyOrder()
}
emitter.on('flushOrderList', flushOrderList)
setTimeout(()=>{
uni.stopPullDownRefresh() //
},1000)
})
onUnmounted(() => { onUnmounted(() => {
emitter.off('flushOrderList', flushOrderList) emitter.off('flushOrderList', flushOrderList)
}) })

View File

@ -118,6 +118,7 @@
import { getFonts } from '../../../common/globalFont'; import { getFonts } from '../../../common/globalFont';
import { myOrderUrl } from '../../../common/globalImagesUrl'; import { myOrderUrl } from '../../../common/globalImagesUrl';
import { publicPath } from '../../../common/globalImagesUrl'; import { publicPath } from '../../../common/globalImagesUrl';
import { onPullDownRefresh } from '@dcloudio/uni-app';
const bkgUrl = ref(myOrderUrl + '/photoProductDetail/bkg.png') const bkgUrl = ref(myOrderUrl + '/photoProductDetail/bkg.png')
const cookie = wx.getStorageSync('cookie') const cookie = wx.getStorageSync('cookie')
let orderId = '' let orderId = ''
@ -141,6 +142,12 @@
getOrderById(orderId) getOrderById(orderId)
}) })
onPullDownRefresh( async ()=>{ //
await getOrderById(orderId)
setTimeout(()=>{
uni.stopPullDownRefresh() //
},1000)
})
const getOrderById = async (val) => { const getOrderById = async (val) => {
const res = await uni.request({ const res = await uni.request({

View File

@ -265,7 +265,8 @@ const updateAddressHandler = (val) => {
coupon.value.open('bottom') coupon.value.open('bottom')
} }
const getMyCouponList = async () => {
const getMyCouponList = async () => {
const res = await uni.request({ const res = await uni.request({
url: baseUrl + '/coupon/list/use', url: baseUrl + '/coupon/list/use',
method: 'POST', method: 'POST',

View File

@ -70,7 +70,7 @@ import { storeHomeUrl } from '../../../common/globalImagesUrl';
import { publicPath } from '../../../common/globalImagesUrl'; import { publicPath } from '../../../common/globalImagesUrl';
const bkgUrl = ref(storeHomeUrl + '/main/bkg.png') const bkgUrl = ref(storeHomeUrl + '/main/bkg.png')
const currentColor = ref(0); const currentColor = ref(0);
const sort =ref([{}]) // const sort = ref([{}]) //
const headerList = ref([{}]) // const headerList = ref([{}]) //
const productList = ref([{}]) // const productList = ref([{}]) //
const cookie = wx.getStorageSync("cookie") const cookie = wx.getStorageSync("cookie")

View File

@ -45,54 +45,29 @@
<script setup> <script setup>
import { ref , onMounted } from 'vue' import { ref , onMounted } from 'vue'
import { baseUrl } from '../../../api/request'; import { baseUrl } from '../../../api/request';
import { onLoad,onPullDownRefresh } from "@dcloudio/uni-app"; import { onLoad } from "@dcloudio/uni-app";
import { getFonts } from '../../../common/globalFont'; import { getFonts } from '../../../common/globalFont';
import { workshopUrl } from '../../../common/globalImagesUrl'; import { workshopUrl } from '../../../common/globalImagesUrl';
import { publicPath } from '../../../common/globalImagesUrl'; import { publicPath } from '../../../common/globalImagesUrl';
import { onPullDownRefresh } from '@dcloudio/uni-app';
import carousel from '@/components/vear-carousel/vear-carousel' import carousel from '@/components/vear-carousel/vear-carousel'
const products = ref() const products = ref()
const cookie = wx.getStorageSync("cookie") const cookie = wx.getStorageSync("cookie")
const bkgUrl = ref(workshopUrl + '/index/bkg.png') const bkgUrl = ref(workshopUrl + '/index/bkg.png')
const carouseList = ref([]) //
const imgList = ref([]) //
onLoad(() => { onLoad(() => {
getFonts() getFonts()
}) })
onMounted(()=>{ onMounted(()=>{
getProducts() getProducts()
getCarouseList()
})
onPullDownRefresh( async ()=>{
getProducts()
getCarouseList()
setTimeout(()=>{
uni.stopPullDownRefresh() //
},1000)
}) })
const getCarouseList = async () => { onPullDownRefresh( async ()=>{ //
const res = await uni.request({ await getProducts()
url: baseUrl + '/banner/query', setTimeout(()=>{
method: 'POST', uni.stopPullDownRefresh() //
header: { }, 1000)
cookie })
},
data: {
type: '服务类'
}
})
console.log('轮播图---->',res.data);
if(res.data.code === 1) {
carouseList.value = res.data.data
carouseList.value.forEach((item)=>{
imgList.value.push({
url: publicPath + item.url
})
})
}
}
const getProducts = async ()=> { const getProducts = async ()=> {
const res = await uni.request({ const res = await uni.request({
@ -112,9 +87,23 @@ const jump_detail =(item,index)=>{
} }
const imgList = ref([{
url: workshopUrl + '/index/banner1.png',
id: 1
},{
url: workshopUrl + '/index/banner2.png',
id: 2
},{
url: workshopUrl + '/index/banner3.png',
id: 3
},{
url: workshopUrl + '/index/banner4.png',
id: 4
},])
const goToSearch = () => { const goToSearch = () => {
uni.navigateTo({ uni.navigateTo({
url: '../searchGood/searchGood?type=0' url: '../searchGood/searchGood?type=0'