const onCopy = (certB64: any) => {
let oInput = document.createElement('input')
oInput.value = certB64;
document.body.appendChild(oInput)
oInput.select() // 选择对象
document.execCommand("Copy") // 执行浏览器复制命令
message.success("复制成功");
oInput.remove()
}