BUG 26059

This commit is contained in:
aixianling
2021-12-27 10:15:23 +08:00
parent 0d42de9d8f
commit 8661271f7c

View File

@@ -35,7 +35,8 @@ export default {
computed: { computed: {
params() { params() {
return this.$route.query || {} let {linkUrl} = this.$route.query
return {...this.$route.query, linkUrl: decodeURIComponent(linkUrl)} || {}
} }
}, },
mounted() { mounted() {
@@ -73,7 +74,7 @@ export default {
}) })
}, },
confirm() { confirm() {
uni.navigateBack({delta:-2}) uni.navigateBack({delta: -2})
} }
}, },
onShow() { onShow() {