|
@@ -17,7 +17,7 @@ import { getNoteByMeasuresSlursStart } from "/src/helpers/formateMusic";
|
|
|
import { Icon, Popup, showToast } from "vant";
|
|
|
import EvaluatResult from "./evaluat-result";
|
|
|
import EvaluatAudio from "./evaluat-audio";
|
|
|
-import { api_getDeviceDelay, api_proxyServiceMessage, api_videoUpdate, getEarphone } from "/src/helpers/communication";
|
|
|
+import { api_getDeviceDelay, api_openAdjustRecording, api_proxyServiceMessage, api_videoUpdate, getEarphone } from "/src/helpers/communication";
|
|
|
import EvaluatShare from "./evaluat-share";
|
|
|
import { Vue3Lottie } from "vue3-lottie";
|
|
|
import startData from "./data/start.json";
|
|
@@ -187,7 +187,11 @@ export default defineComponent({
|
|
|
const handleEvaluatResult = (type: "practise" | "tryagain" | "look" | "share" | "update") => {
|
|
|
if (type === "update") {
|
|
|
// 上传云端
|
|
|
- evaluatModel.evaluatUpdateAudio = true;
|
|
|
+ // evaluatModel.evaluatUpdateAudio = true;
|
|
|
+ api_openAdjustRecording({
|
|
|
+ recordId: evaluatingData.resultData?.recordIdStr || evaluatingData.resultData?.recordId,
|
|
|
+ title: state.examSongName || '曲谱演奏',
|
|
|
+ });
|
|
|
return;
|
|
|
} else if (type === "share") {
|
|
|
// 分享
|