copy(text) {
let oInput = document.createElement('input')
oInput.value = text
document.body.appendChild(oInput)
oInput.select()
document.execCommand('Copy') // 执行浏览器复制命令
this.$message.success('复制成功!')
oInput.remove()
}