文本复制
export const copyTextContent = (values) => {
let oInput = document.createElement('input');
oInput.value = values;
document.body.appendChild(oInput);
oInput.select();
document.execCommand("Copy");
messageGlobal('success', '复制成功');
oInput.remove()
}