BUG 26059

This commit is contained in:
aixianling
2021-12-27 16:31:24 +08:00
parent b381db3536
commit c424f19415

View File

@@ -29,14 +29,14 @@
<script>
import {mapActions} from 'vuex'
import qs from "query-string"
export default {
name: 'Result',
computed: {
params() {
let {linkUrl} = this.$route.query
return {...this.$route.query, linkUrl: decodeURIComponent(linkUrl)} || {}
return qs.parse(location.search)
}
},
mounted() {