瀏覽代碼

fix: 添加录音时间至少5秒的校验

防止用户录音时间过短,当录音时间少于5秒时显示警告信息并终止操作
lsc 1 周之前
父節點
當前提交
09aa03a2b7
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      src/components/pptEasyClass/index.vue

+ 6 - 0
src/components/pptEasyClass/index.vue

@@ -173,6 +173,12 @@ export default {
         }
         this.onFinishRecordWithMicrosoft();
       } else {
+        const now = new Date();
+        const duration = (now - new Date(this.recordingEndTime)) / 1000;
+        if (duration < 5) {
+          this.$message.warning('录音时间至少间距5秒');
+          return;
+        }
         this.onStartRecordWithMicrosoft();
       }
     },