This commit is contained in:
白菜
2026-01-19 17:30:03 +08:00
parent de403e861d
commit 648f031ebe
12 changed files with 536 additions and 425 deletions

View File

@ -143,9 +143,9 @@
})
},
},
mounted() {
onLoad(options) {
uni.showLoading()
getTicket(this.$route.query.id).then(response => {
getTicket(options.id).then(response => {
this.info = JSON.parse(JSON.stringify(response?.data || {}))
const {
images = ''
@ -164,6 +164,7 @@
}).finally(() => {
uni.hideLoading()
})
}
}
</script>