Commit 1136ab72 by 赵雅纹

集点

parent 79ecd50a
...@@ -44,7 +44,7 @@ wxService.page({ ...@@ -44,7 +44,7 @@ wxService.page({
* 生命周期函数--监听页面加载 * 生命周期函数--监听页面加载
*/ */
onLoad(options) { onLoad(options) {
}, },
watch: { watch: {
experAccessible(newVal, oldVal) { experAccessible(newVal, oldVal) {
...@@ -61,7 +61,11 @@ wxService.page({ ...@@ -61,7 +61,11 @@ wxService.page({
if (scene) { if (scene) {
let idParam = decodeURIComponent(scene).split('&')[0] let idParam = decodeURIComponent(scene).split('&')[0]
let shareId = idParam && idParam.split('=')[1] || 0 let shareId = idParam && idParam.split('=')[1] || 0
id = Integer.digit(shareId, 64, 10) if(shareId.length < 12){
id = Integer.digit(shareId, 64, 10)
}else{
id = shareId
}
} else { } else {
id = option.id id = option.id
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment