Component({ properties: { list: { type: Array } }, lifetimes: { attached: function () { getApp().globalData.Language.getLanguagePackage(this) } }, methods: { copyNum(e) { let data = e.currentTarget.dataset.num; if (data) wx.setClipboardData({ data, success: function (res) { getApp().globalData.Language.showToast('快递单号复制成功') } }) } } })