修复在H5不能复制问题
虚拟发货增加复制按钮
按下方步骤,如不会,请把附件解压到pages\users\order_details\文件夹
打开pages\users\order_details\index.vue
第一步:
把
**
商家备注:
{{orderInfo.remark}}
改为
商家备注:
{{orderInfo.remark}}
第二步:
在
/**
*
- 剪切订单号
*/
// #ifndef H5
copy: function() {
let that = this;
uni.setClipboardData({
data: this.orderInfo.order_id
});
},
// #endif
下方增加
// #ifndef H5
copyremarks: function() {
let that = this;
uni.setClipboardData({
data: this.orderInfo.remark
});
},
第三步:
在
下方增加
复制秘钥
复制秘钥
