liushengqiang 2 vuotta sitten
vanhempi
commit
9eb028904f

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

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

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

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

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

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