Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-09 12:00:35 +08:00
parent c67866a148
commit dc9b345e99
9 changed files with 234 additions and 196 deletions

View File

@@ -383,4 +383,19 @@ class UserHttp {
return {'status': false, 'msg': res.data['message']};
}
}
static Future vipExpAdd() async {
final res = await Request().post(
Api.vipExpAdd,
queryParameters: {
'mid': Accounts.main.mid,
'csrf': Accounts.main.csrf,
},
);
if (res.data['code'] == 0) {
return {'status': true};
} else {
return {'status': false, 'msg': res.data['message']};
}
}
}