fix: check-in

This commit is contained in:
zzc
2026-02-25 14:50:47 +08:00
parent 32457aa947
commit 72eb440504
2 changed files with 17 additions and 0 deletions

8
api/user.js Normal file
View File

@@ -0,0 +1,8 @@
import { request } from "@/utils/request.js";
export const getUserSignInfo = async (data) => {
return request({
url: "/api/sign/info",
method: "GET",
});
};