This commit is contained in:
yziiy
2025-12-22 09:38:28 +08:00
parent cbef9c7826
commit 59fd2b041f
6 changed files with 125 additions and 12 deletions

View File

@@ -175,4 +175,16 @@ export const checkPassWord = data => {
return http.request<Result>("post", "/adminapi/SysSet/check_second_pwd", {
data
});
}
// 私密设置
export const getLuckyCoinInfo = () => {
return http.request<Result>(
"get",
"/adminapi/Lottery/config_list"
);
};
export const saveLuckyCoinInfo = data => {
return http.request<Result>("post", "/adminapi/Lottery/config_set", {
data
});
}