1234567891011121314151617181920212223 |
- 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('快递单号复制成功')
- }
- })
- }
- }
- })
|