|
@@ -154,6 +154,7 @@ export default {
|
|
|
selected: [],
|
|
|
reserveTime: "",
|
|
|
selectDate: "",
|
|
|
+ id:'',
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -404,9 +405,21 @@ export default {
|
|
|
} catch (error) {
|
|
|
console.log("未读取到对应缓存")
|
|
|
}
|
|
|
+ this.id = option.id
|
|
|
this.detail(option.id)
|
|
|
},
|
|
|
-
|
|
|
+ onShareTimeline() {
|
|
|
+ return {
|
|
|
+ title: "慧研学惠生活-" + this.info.goodsName,
|
|
|
+ query: "id=" + this.id,
|
|
|
+ };
|
|
|
+ },
|
|
|
+ onShareAppMessage() {
|
|
|
+ return {
|
|
|
+ title: "慧研学惠生活-" + this.info.goodsName,
|
|
|
+ path: "/study/studyGoodsDetail?id=" + this.id,
|
|
|
+ };
|
|
|
+ },
|
|
|
}
|
|
|
</script>
|
|
|
|