// https://blog.csdn.net/weixin_45140661/java/article/details/92005667
copyText(row,flag) {
console.log(row); //每一行的数据
if(flag=="wxid")
Url2 = row.wxid; //每一行的某个值,如选中的当前行的url
else
Url2 = row.robot_wxid;
var oInput = document.createElement('input'); //创建一个隐藏input(重要!)
oInput.value = Url2; //赋值
console.log(oInput.value);
document.body.appendChild(oInput);
oInput.select(); // 选择对象
document.execCommand("Copy"); // 执行浏览器复制命令
oInput.className = 'oInput';
oInput.style.display='none';
console.log('复制成功');
this.$notify({
title: '成功',
message: '复制成功',
type: 'success'
});
},
console