复制文本方法:
copy(text) {
const oInput = document.createElement('input');
oInput.value = text;
document.body.appendChild(oInput);
oInput.select(); // 选择对象;
document.execCommand('Copy'); // 执行浏览器复制命令
this.$message.success('复制成功');
oInput.remove();
},