Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
android_vedio
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
0
Merge Requests
0
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
android
android_vedio
Commits
e853fb0e
Commit
e853fb0e
authored
Aug 16, 2024
by
mengcuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码优化
parent
8175cb30
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
106 additions
and
72 deletions
+106
-72
VipBean.java
.../main/java/com/duben/speedplayletu/mvp/model/VipBean.java
+15
-0
VipPresenter.kt
...va/com/duben/speedplayletu/mvp/presenters/VipPresenter.kt
+2
-2
VipView.kt
...rc/main/java/com/duben/speedplayletu/mvp/views/VipView.kt
+1
-1
VipActivity.kt
.../java/com/duben/speedplayletu/ui/activitys/VipActivity.kt
+88
-69
No files found.
video/app/src/main/java/com/duben/speedplayletu/mvp/model/VipBean.java
View file @
e853fb0e
...
@@ -35,6 +35,13 @@ public class VipBean implements Serializable {
...
@@ -35,6 +35,13 @@ public class VipBean implements Serializable {
private
String
buttonText
;
private
String
buttonText
;
private
int
payToModel
;
//0 app内部,1.只签约转支付宝浏览器支付 2.带uid转支付宝小程序(暂定只有一个小程序)
private
int
payToModel
;
//0 app内部,1.只签约转支付宝浏览器支付 2.带uid转支付宝小程序(暂定只有一个小程序)
//带uid转支付宝小程序 第一个小程序
private
String
payToModel2FirstAlipayAppid
;
//带uid转支付宝小程序 挽留用的第二个小程序
private
String
payToModel2SecondAlipayAppid
;
public
String
getButtonText
()
{
public
String
getButtonText
()
{
return
buttonText
;
return
buttonText
;
}
}
...
@@ -122,5 +129,13 @@ public class VipBean implements Serializable {
...
@@ -122,5 +129,13 @@ public class VipBean implements Serializable {
public
void
setPayToModel
(
int
payToModel
)
{
public
void
setPayToModel
(
int
payToModel
)
{
this
.
payToModel
=
payToModel
;
this
.
payToModel
=
payToModel
;
}
}
public
String
getPayToModel2FirstAlipayAppid
()
{
return
payToModel2FirstAlipayAppid
;
}
public
String
getPayToModel2SecondAlipayAppid
()
{
return
payToModel2SecondAlipayAppid
;
}
}
}
}
}
video/app/src/main/java/com/duben/speedplayletu/mvp/presenters/VipPresenter.kt
View file @
e853fb0e
...
@@ -182,7 +182,7 @@ class VipPresenter : BasePresenter<VipView>() {
...
@@ -182,7 +182,7 @@ class VipPresenter : BasePresenter<VipView>() {
})
})
}
}
fun
getVipPayParams
(
payChannel
:
String
,
pid
:
String
,
isInstallAlipay
:
Boolean
)
{
fun
getVipPayParams
(
payChannel
:
String
,
pid
:
String
,
isInstallAlipay
:
Boolean
,
enter
:
String
)
{
val
vo
=
HashMap
<
String
,
Any
>()
val
vo
=
HashMap
<
String
,
Any
>()
// vo["payChannel"] = payChannel
// vo["payChannel"] = payChannel
vo
[
"payChannel"
]
=
"ALIPAY"
vo
[
"payChannel"
]
=
"ALIPAY"
...
@@ -207,7 +207,7 @@ class VipPresenter : BasePresenter<VipView>() {
...
@@ -207,7 +207,7 @@ class VipPresenter : BasePresenter<VipView>() {
val
code
:
Int
=
baseResponse
.
getStatus
()
val
code
:
Int
=
baseResponse
.
getStatus
()
when
(
code
)
{
when
(
code
)
{
200
->
{
200
->
{
view
.
getVipPayParamsSuc
(
"ALIPAY"
,
baseResponse
.
data
)
view
.
getVipPayParamsSuc
(
"ALIPAY"
,
baseResponse
.
data
,
enter
)
}
}
else
->
{
else
->
{
view
.
showToast
(
baseResponse
.
getMessage
())
view
.
showToast
(
baseResponse
.
getMessage
())
...
...
video/app/src/main/java/com/duben/speedplayletu/mvp/views/VipView.kt
View file @
e853fb0e
...
@@ -7,7 +7,7 @@ import com.duben.speedplayletu.mvp.model.WxPayParamBean
...
@@ -7,7 +7,7 @@ import com.duben.speedplayletu.mvp.model.WxPayParamBean
interface
VipView
:
BaseView
{
interface
VipView
:
BaseView
{
fun
getVipProductSuc
(
data
:
VipBean
)
fun
getVipProductSuc
(
data
:
VipBean
)
fun
getVipPayParamsSuc
(
payChannel
:
String
,
data
:
WxPayParamBean
)
fun
getVipPayParamsSuc
(
payChannel
:
String
,
data
:
WxPayParamBean
,
enter
:
String
)
fun
queryVipOrderSuc
(
isPay
:
Boolean
)
fun
queryVipOrderSuc
(
isPay
:
Boolean
)
fun
getUserSuc
(
data
:
UserBean
)
fun
getUserSuc
(
data
:
UserBean
)
...
...
video/app/src/main/java/com/duben/speedplayletu/ui/activitys/VipActivity.kt
View file @
e853fb0e
This diff is collapsed.
Click to expand it.
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