1、公共方法
onCopy(data) {
var input = document.createElement('input')
input.value = data
input.id = 'copyInput'
document.body.appendChild(input)
input.select() // 选中文本
document.execCommand('copy') // 执行浏览器复制命令
document.getElementById('copyInput').remove()
Notify({ type: 'success', message: `复制成功:${data}` })
},