|
@@ -248,8 +248,6 @@ export const handleEndEvaluat = (isComplete = false) => {
|
|
|
forbidClick: true,
|
|
|
});
|
|
|
evaluatingData.isComplete = isComplete;
|
|
|
- // 保存视频到相册
|
|
|
- // saveVideoToAlbum();
|
|
|
};
|
|
|
|
|
|
/**
|
|
@@ -266,6 +264,7 @@ export const handleEndBegin = () => {
|
|
|
*/
|
|
|
export const handleCancelEvaluat = () => {
|
|
|
evaluatingData.evaluatings = {};
|
|
|
+ evaluatingData.startBegin = false;
|
|
|
// 关闭提示
|
|
|
closeToast();
|
|
|
// 取消记录
|
|
@@ -304,16 +303,11 @@ export const handleViewReport = (key: "recordId" | "recordIdStr", type: "gym" |
|
|
|
statusBarTextColor: false,
|
|
|
isOpenLight: true,
|
|
|
});
|
|
|
+ setTimeout(() => {
|
|
|
+ evaluatingData.resulstMode = false;
|
|
|
+ }, 1000)
|
|
|
};
|
|
|
|
|
|
-/** 保存视频到相册 */
|
|
|
-const saveVideoToAlbum = async () => {
|
|
|
- if (state.setting.saveToAlbum && state.setting.camera){
|
|
|
- const res = await api_videoUpdate()
|
|
|
- console.log("保存视频到相册回调:", res)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: "evaluating",
|