liushengqiang 2 年之前
父节点
当前提交
9eb028904f
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      src/page-orchestra/evaluat-model/index.tsx
  2. 1 1
      src/utils/native-message.ts
  3. 1 1
      src/view/evaluating/index.tsx

+ 1 - 1
src/page-orchestra/evaluat-model/index.tsx

@@ -202,7 +202,7 @@ export default defineComponent({
 				},
 				body: {
 					filePath: res?.content?.filePath,
-					recordId: res?.recordId,
+					recordId: evaluatingData.resultData.recordIdStr,
 				},
 			});
 			Snackbar.success("上传成功");

+ 1 - 1
src/utils/native-message.ts

@@ -42,7 +42,7 @@ if (browserInfo.isApp) {
           data.content = JSON.parse(data.content)
         }
       } catch (error) {}
-      console.log('h5_接受_api:', data?.api)
+      console.log('h5_接受_api:', data?.api, data.content)
       if (!uuid) {
         const keys = Object.keys(calls).filter(key => key.indexOf(data.api) === 0)
         for (const key of keys) {

+ 1 - 1
src/view/evaluating/index.tsx

@@ -249,7 +249,7 @@ export const handleEndEvaluat = (isComplete = false) => {
 	});
 	evaluatingData.isComplete = isComplete;
 	// 保存视频到相册
-	saveVideoToAlbum();
+	// saveVideoToAlbum();
 };
 
 /**