Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
RvApp
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lify
RvApp
Commits
b55d27fc
Commit
b55d27fc
authored
Sep 26, 2019
by
jianglx
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master-video' of
http://113.105.137.151:22280/lify/rvapp
into dev_im
parents
34ae4073
d34068f5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
2 deletions
+27
-2
SetPayPwdActivity.java
...main/java/com/xxrv/wallet/activity/SetPayPwdActivity.java
+8
-2
SetPayPwdCodeBean.java
...src/main/java/com/xxrv/wallet/bean/SetPayPwdCodeBean.java
+19
-0
No files found.
plugin_wallet/src/main/java/com/xxrv/wallet/activity/SetPayPwdActivity.java
View file @
b55d27fc
...
...
@@ -28,6 +28,7 @@ import com.rv.home.rv.module.ui.login.bean.SendCodeBean;
import
com.xxrv.wallet.R
;
import
com.xxrv.wallet.R2
;
import
com.xxrv.wallet.api.WalletApi
;
import
com.xxrv.wallet.bean.SetPayPwdCodeBean
;
import
com.xxrv.wallet.event.SetPasswordSuccessEvent
;
import
com.yuyife.okgo.OkGoUtil
;
...
...
@@ -72,7 +73,12 @@ public class SetPayPwdActivity extends BaseStatusActivity<CommonPresenter> {
showToast
(
"验证码发送成功!"
);
break
;
case
2
:
startActivity
(
SetPayPwdActivity2
.
getIntent
(
mActivity
,
getPhone
(),
getCode
(),
type
));
SetPayPwdCodeBean
result1
=
(
SetPayPwdCodeBean
)
result
;
if
(
result1
.
isData
())
{
startActivity
(
SetPayPwdActivity2
.
getIntent
(
mActivity
,
getPhone
(),
getCode
(),
type
));
}
else
{
showToast
(
"验证码不正确!"
);
}
break
;
}
}
...
...
@@ -182,7 +188,7 @@ public class SetPayPwdActivity extends BaseStatusActivity<CommonPresenter> {
Map
<
String
,
Object
>
map
=
new
LinkedHashMap
<>();
map
.
put
(
"phone"
,
getPhone
());
map
.
put
(
"mobilecode"
,
getCode
());
mPresenter
.
getData
(
RvFrameConfig
.
HOST
,
2
,
WalletApi
.
HTTP_URL_CHECK_CHECKCODE
,
Bas
eBean
.
class
,
map
,
headMap
,
true
);
mPresenter
.
getData
(
RvFrameConfig
.
HOST
,
2
,
WalletApi
.
HTTP_URL_CHECK_CHECKCODE
,
SetPayPwdCod
eBean
.
class
,
map
,
headMap
,
true
);
}
/**
...
...
plugin_wallet/src/main/java/com/xxrv/wallet/bean/SetPayPwdCodeBean.java
0 → 100644
View file @
b55d27fc
package
com
.
xxrv
.
wallet
.
bean
;
import
com.ruiwenliu.wrapper.base.BaseBean
;
public
class
SetPayPwdCodeBean
extends
BaseBean
{
private
boolean
data
;
public
boolean
isData
()
{
return
data
;
}
public
void
setData
(
boolean
data
)
{
this
.
data
=
data
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment