// 将文字复制到剪贴板 const copyTextToClipboard = async (text) => { await navigator.clipboard.writeText(text); };