tangshi300/componet/audio-play/audio-play.js

14 lines
356 B
JavaScript
Raw Normal View History

2024-12-05 14:56:07 +08:00
Component({
properties: {},
data: {
isShow: !1
},
methods: {
gotoAudio: function(e) {
var o = wx.getStorageSync("currentAlbum"), t = o.currentProgramIndex;
o && null != t && wx.navigateTo({
url: "/pages/album/audio/index?id=" + o.id + "&index=" + t
});
}
}
});