<button bindtap='copy'>复制</button>
<text>{{tempFileURL}}</text>
copy:function(){
var that=this;
wx.setClipboardData({
data: that.data.tempFileURL,
success() {
wx.showToast({
title: '复制成功',
icon: 'success',
duration: 1000
})
}
})
}