Prechádzať zdrojové kódy

refactor: 优化检查退出反馈对话框按钮文案 - src/pages/exam/components/ExamExitFeedback.tsx

sw 12 hodín pred
rodič
commit
cf2bfe6ee3

+ 3 - 3
src/pages/exam/components/ExamExitFeedback.tsx

@@ -37,12 +37,12 @@ const ExamExitFeedback: React.FC<ExamExitFeedbackProps> = ({
       onCancel={onContinue}
       footer={
         <Space>
-          <Button onClick={onContinue}>继续检查</Button>
+          <Button onClick={onContinue}>挂起检查</Button>
           <Button type="primary" onClick={onSave}>
-            保存并完成
+            完成检查
           </Button>
           <Button type="primary" danger onClick={onAbort}>
-            直接中止
+            留在检查
           </Button>
         </Space>
       }