This commit is contained in:
parent
02d38012d4
commit
41b8071b30
|
@ -74,6 +74,12 @@
|
||||||
this.id = op.id
|
this.id = op.id
|
||||||
this.getData()
|
this.getData()
|
||||||
},
|
},
|
||||||
|
onShow() {
|
||||||
|
wx.showShareMenu({
|
||||||
|
withShareTicket: true,
|
||||||
|
menus: ['shareAppMessage', 'shareTimeline']
|
||||||
|
})
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onBindplay() {
|
onBindplay() {
|
||||||
// this.player.play()
|
// this.player.play()
|
||||||
|
@ -91,9 +97,7 @@
|
||||||
},
|
},
|
||||||
getData() {
|
getData() {
|
||||||
this.http
|
this.http
|
||||||
.request("/exhibition/details", {
|
.request("/exhibition/details/" + this.id, {}, "GET")
|
||||||
id: this.id
|
|
||||||
}, "GET")
|
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.type = res.data.type
|
this.type = res.data.type
|
||||||
|
|
Loading…
Reference in New Issue