修復(fù)在H5不能復(fù)制問題
虛擬發(fā)貨增加復(fù)制按鈕
按下方步驟,如不會,請把附件解壓到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
});
},
第三步:
在
下方增加
復(fù)制秘鑰
復(fù)制秘鑰

