const handlePrintTriage = () => {
const printRef = triageFormRef.value.backPrintRef()
if (printRef) {
const printWindow = window.open('', '_blank')
printWindow.document.write(`<html>
<head>
<title></title>
<style>
body { font-family: Arial, sans-serif }
</style>
</head>
<body>${printRef.innerHTML}</body>
</html>`)
printWindow.document.close()
printWindow.print()
printWindow.close()
} else {
ElMessage.error('未找到打印内容')
}
}