1.通过 encodeURIComponent(JSON.stringify( ))
FindUrl(url) { uni.navigateTo({ url: '../findlist/findlist?url=' + encodeURIComponent(JSON.stringify(url)) }) },
`
2.接收通过
//通过 JSON.parse(decodeURIComponent()) 解码 onLoad(option) { this.listUrl = JSON.parse(decodeURIComponent(option.url)) },