1:修改获取验证码,当返回后才会更新页面(两个地方没有修改:1:提现的二次确认和注销的二次确认)

This commit is contained in:
2025-12-18 15:53:48 +08:00
parent 894b397537
commit e2b0c9ce8c
10 changed files with 37 additions and 18 deletions

View File

@@ -27,7 +27,7 @@ public interface ApiServer {
@FormUrlEncoded //请求验证码
@POST(Constants.SEND_CODE)
Observable<BaseModel<Object>> sendCode(@Field("mobile") String mobile, @Field("event") String event);
Call<BaseModel<String>> sendCode(@Field("mobile") String mobile, @Field("event") String event);
@FormUrlEncoded
@POST(Constants.LOGIN)