修复已知问题

This commit is contained in:
bobobobo
2026-02-11 21:53:35 +08:00
parent 9245fefc9a
commit a040b56c74
3 changed files with 9 additions and 9 deletions

View File

@@ -62,12 +62,12 @@
// 跳转到订单详情
const goToDetail = item => {
let url = ''
if (item.orderType == 1) {
url = '/pages/discover/order/detail'
} else {
url = '/pages/shop-together/detail'
}
let url = '/pages/discover/order/detail'
// if (item.orderType == 1) {
// url = '/pages/discover/order/detail'
// } else {
// url = '/pages/shop-together/detail'
// }
navigateTo(url, { id: item.id })
}