This commit is contained in:
2025-05-27 20:03:47 +08:00
parent 3c812c37e7
commit 03ecb95a9b
8 changed files with 107 additions and 28 deletions

View File

@@ -341,6 +341,27 @@ const system = {
data: data
});
},
createQrcode: async (data) => {
return request({
method: MethodsENUM.POST,
url: "/index/createQrcode",
data: data
});
},
getMyTop: async (data) => {
return request({
method: MethodsENUM.POST,
url: "/user/getMyTop",
data: data
});
},
myTeamList: async (data) => {
return request({
method: MethodsENUM.POST,
url: "/user/myTeamList",
data: data
});
},
}
export default system;