sync changes: 出场顺序优化、联系人功能

This commit is contained in:
Z-WICK
2026-01-15 15:57:08 +08:00
committed by DevOps
parent 412069524e
commit 7c4507c3ed
7 changed files with 81 additions and 16 deletions
+3 -1
View File
@@ -82,6 +82,7 @@ export default {
data() {
return {
eventId: '',
orderId: '',
eventInfo: {
id: '',
title: '',
@@ -96,6 +97,7 @@ export default {
onLoad(options) {
if (options.id) {
this.eventId = options.id
this.orderId = options.orderId || null
this.loadEventDetail(options.id)
}
},
@@ -192,7 +194,7 @@ export default {
if (url) {
// 跳转时传递赛事ID
uni.navigateTo({
url: `${url}?eventId=${this.eventId}`
url: `${url}?eventId=${this.eventId}&orderId=${this.orderId || ""}`
})
} else {
uni.showToast({