11 lines
312 B
TypeScript
Raw Normal View History

2025-04-22 10:22:33 +08:00
import {file, get, post} from "@/utils/request";
//上传接口
export const attachmentUpload = async (files: Blob) => {
return await file("/api/attachment/upload", files);
};
//更新app接口
export async function checkUpdateApi(param: any) {
return await get('/usersv/open/app/checkUpdate', param)
}