1、删除视频,永不下载

2、去重-优先级
3、视频合成优化
4、其他优化
This commit is contained in:
jianzhichu
2025-12-03 23:43:10 +08:00
parent bd3a103f8f
commit 25e2a22dd2
29 changed files with 1023 additions and 702 deletions
+10 -1
View File
@@ -210,6 +210,14 @@ export const useApiStore = defineStore('coreapi', () => {
});
}
//删除
async function DeleteVideo(param: string) {
return http.request<any, Response<any>>('/api/video/vdelete/' + param, 'get').then(r => {
return r.data;
}).finally(() => {
});
}
//检查版本
@@ -260,6 +268,7 @@ export const useApiStore = defineStore('coreapi', () => {
SyncFollow,
OpenOrCloseSync,
OpenOrCloseFullSync,
ReDownViedos
ReDownViedos,
DeleteVideo
};
});