bug修复

This commit is contained in:
jianzhichu
2025-11-30 21:33:18 +08:00
parent e42a004765
commit 50149a280b
57 changed files with 766 additions and 317 deletions
+21
View File
@@ -210,7 +210,28 @@ export const useApiStore = defineStore('coreapi', () => {
});
}
//当前版本
async function MyTag() {
return http.request<any, Response<any>>('/api/config/mytag', 'get').then(r => {
return r.data;
}).finally(() => {
});
}
//检查版本
async function CheckTag() {
return http.request<any, Response<any>>('/api/config/checktag', 'get').then(r => {
return r.data;
}).finally(() => {
});
}
return {
CheckTag,
MyTag,
deleteCookie,
UpdateConfig,
apiCheckInitStatus,