|
@@ -10,6 +10,9 @@ import { getDuration } from "/src/helpers/formateMusic";
|
|
|
import { OpenSheetMusicDisplay } from "/osmd-extended/src";
|
|
|
import { browser, getBehaviorId } from "/src/utils";
|
|
|
import { api_musicPracticeRecordSave } from "../../page-instrument/api";
|
|
|
+import { getQuery } from "/src/utils/queryString";
|
|
|
+
|
|
|
+const query: any = getQuery();
|
|
|
|
|
|
export const followData = reactive({
|
|
|
list: [] as any, // 频率列表
|
|
@@ -22,6 +25,7 @@ export const followData = reactive({
|
|
|
|
|
|
// 记录跟练时长
|
|
|
const handleRecord = (total: number) => {
|
|
|
+ if (query.isCbs) return
|
|
|
if (total < 0) total = 0;
|
|
|
const totalTime = total / 1000;
|
|
|
|