2024-11-10 07:01:22 +00:00
|
|
|
Page({
|
2024-12-17 11:46:10 +00:00
|
|
|
data:{
|
|
|
|
dingdan:[],
|
|
|
|
prices:'',
|
|
|
|
},
|
|
|
|
onLoad(options) {
|
|
|
|
const arrStr = decodeURIComponent(options.products);
|
|
|
|
const arr = JSON.parse(arrStr);
|
|
|
|
const prices = decodeURIComponent(options.prices);
|
|
|
|
console.log(arr,'传过来的');
|
|
|
|
this.setData({
|
|
|
|
dingdan:arr,
|
|
|
|
prices:prices
|
|
|
|
})
|
|
|
|
},
|
2024-11-10 07:01:22 +00:00
|
|
|
});
|