#page1 传参methods: {handleJump(id) {Taro.navigateTo({url: `/pages/detail/index?id=${id}`});},},
#page2 接传参import { getCurrentInstance } from "@tarojs/taro";export default {data() {return {msg: "Hello world!",};},created() {console.log(getCurrentInstance().router.params.id);},};
