传递的页面:
例:uniapp中

demoClick(){
uni.navigateTo({
				url:'./applyToDevice?planName=' + this.detail.name + '&list=' + encodeURIComponent(JSON.stringify(this.detailList))
			})
}

接收的页面:

onLoad(option) {
			console.log(option)
			this.planName = option.planName
			this.planDoors = JSON.parse(decodeURIComponent(option.list))
			this.getNum()
		},
Logo

前往低代码交流专区

更多推荐