download:function(e){
var url = e.currentTarget.dataset.url;
console.log(url)
wx.downloadFile({
url: url,
success: function (res) {
console.log(res)
const filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
success: function (res) {
}
})
}
})
}