购物车,订单,霸王餐

This commit is contained in:
wwz
2025-03-20 18:33:21 +08:00
parent 9da31e2faa
commit 5b8100aa64
16 changed files with 1382 additions and 1224 deletions

View File

@@ -32,7 +32,8 @@ export const APIhistoryOrder = (data) => {
return request({
url: url + '/user/order/historyOrder',
method: 'get',
data: data
data: data,
toast: false
})
}

View File

@@ -312,6 +312,10 @@ const useWebSocket = (options = {}) => {
// 页面显示,尝试连接 WebSocket
const onShowconnect = () => {
if (autoReconnect.value) {
uni.showLoading({
title: `尝试再次连接`,
mask: true
})
connect();
}
}