feat: 添加签到功能

This commit is contained in:
陈淳
2024-01-13 17:20:57 +08:00
parent 4e5f51a4c8
commit f1a87ef529
3 changed files with 33 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
import request from "@/config/axios/service";
export function signIn() {
return request({
url: "/integral/sign-in",
method: "post"
});
}