作者 刘朕

分享功能调试

... ... @@ -41,9 +41,13 @@ Page({
id: options.id,
})
} else {
that.setData({
id: options.scene,
})
console.log(options.scene);
let scene = options.scene;
scene = scene.split('%2C');
let id = scene[1].split('scene%3A')[1]
that.setData({
id: id,
})
}
that.getDetailsContent()
},
... ...