|
|
|
@ -137,33 +137,26 @@ export default { |
|
|
|
|
obj.jd_short_url + |
|
|
|
|
';\n' |
|
|
|
|
}) |
|
|
|
|
// text = that.goodsList.map((obj) => { |
|
|
|
|
// return ( |
|
|
|
|
// |
|
|
|
|
// ) |
|
|
|
|
// }) |
|
|
|
|
console.log(text) |
|
|
|
|
let content = '今天' + that.today + ','+this.fromData.header_content+'\n' + text |
|
|
|
|
// that.copyText(content) |
|
|
|
|
// 创建一个临时的 textarea 元素。 |
|
|
|
|
if (content) { |
|
|
|
|
const el = document.createElement('textarea') |
|
|
|
|
// 将需要复制的文本内容赋值给 textarea 元素。 |
|
|
|
|
el.value = content |
|
|
|
|
//将 textarea 元素添加到页面中。 |
|
|
|
|
document.body.appendChild(el) |
|
|
|
|
//选中 textarea 元素中的文本。 |
|
|
|
|
el.select() |
|
|
|
|
// 执行复制命令,将选中的文本复制到剪贴板 |
|
|
|
|
document.execCommand('copy') |
|
|
|
|
//从页面中移除 textarea 元素。 |
|
|
|
|
document.body.removeChild(el) |
|
|
|
|
this.$message.success('复制成功', 1.5) |
|
|
|
|
} else { |
|
|
|
|
this.$message.fail('复制失败', 1.5) |
|
|
|
|
} |
|
|
|
|
let content = '今天' + that.today + ',' + that.fromData.header_content + '\n' + text |
|
|
|
|
that.copyText(content) |
|
|
|
|
// if (content) { |
|
|
|
|
// let el = document.createElement('textarea') |
|
|
|
|
// // 将需要复制的文本内容赋值给 textarea 元素。 |
|
|
|
|
// el.value = content |
|
|
|
|
// //将 textarea 元素添加到页面中。 |
|
|
|
|
// document.body.appendChild(el) |
|
|
|
|
// //选中 textarea 元素中的文本。 |
|
|
|
|
// el.select() |
|
|
|
|
// // 执行复制命令,将选中的文本复制到剪贴板 |
|
|
|
|
// document.execCommand('copy') |
|
|
|
|
// //从页面中移除 textarea 元素。 |
|
|
|
|
// document.body.removeChild(el) |
|
|
|
|
// that.$message.success('复制成功', 1.5) |
|
|
|
|
// } else { |
|
|
|
|
// that.$message.fail('复制失败', 1.5) |
|
|
|
|
// } |
|
|
|
|
} else { |
|
|
|
|
this.$message.fail('无可复制内容', 1.5) |
|
|
|
|
that.$message.fail('无可复制内容', 1.5) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
@ -180,6 +173,7 @@ export default { |
|
|
|
|
}, |
|
|
|
|
handleCopy(item) { |
|
|
|
|
let that = this |
|
|
|
|
this.fromData = item |
|
|
|
|
this.getCurrentDate() |
|
|
|
|
that.getPreviewList(item.id, 2) |
|
|
|
|
}, |
|
|
|
|