Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
VirtualCard-iOS
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
APP
VirtualCard-iOS
Commits
2590d0e7
Commit
2590d0e7
authored
May 29, 2020
by
guanghui.shi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
我的账单修改,以及toast提示
parent
eeecca8f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
1 deletion
+21
-1
QGRepaymentViewController.m
...nt/Controller/QGRepaymentHome/QGRepaymentViewController.m
+20
-1
QGSafeBindSmsVerifyViewController.m
...r/Function/SafeCenter/QGSafeBindSmsVerifyViewController.m
+1
-0
No files found.
VirtualPayment/VirtualPayment/QGClasses/Card/Function/QGRepayment/Controller/QGRepaymentHome/QGRepaymentViewController.m
View file @
2590d0e7
...
...
@@ -127,7 +127,26 @@
@strongify
(
self
);
[
self
setupAnalyticsWith
:
isRight
];
[
QGApplicationOpenURL
handleAllSupportUrl
:
isRight
?
self
.
billHead
.
appPreRepayUrl
:
self
.
billHead
.
appRepayUrl
];
if
(
self
.
billModel
.
isShould
)
{
if
(
self
.
bottomView
.
type
==
RepaymentBottomTypeSignle
)
{
[
QGApplicationOpenURL
handleAllSupportUrl
:
self
.
billHead
.
appRepayUrl
];
}
else
{
if
(
isRight
)
{
NSString
*
urlString
=
self
.
billHead
.
installmentUrl
;
urlString
=
[
urlString
filterURLParam
:
@"isBothBtn"
value
:
@"true"
];
urlString
=
[
urlString
filterURLParam
:
@"billNumber"
value
:
self
.
billModel
.
billNo
];
urlString
=
[
urlString
filterURLParam
:
@"itemPrice"
value
:
self
.
billModel
.
balanceAmount
];
urlString
=
[
urlString
filterURLParam
:
@"addPrice"
value
:
self
.
shouldAmount
==
nil
?
@"0"
:
self
.
shouldAmount
];
urlString
=
[
urlString
filterURLParam
:
@"from"
value
:
self
.
billModel
.
isShould
?
@"should"
:
@"await"
];
[
self
navigationToWeb
:
urlString
];
}
else
{
[
QGApplicationOpenURL
handleAllSupportUrl
:
self
.
billHead
.
appRepayUrl
];
}
}
}
else
{
[
QGApplicationOpenURL
handleAllSupportUrl
:
self
.
billHead
.
appPreRepayUrl
];
}
};
/// 设置tableView
[
self
.
tableView
mas_remakeConstraints
:
^
(
MASConstraintMaker
*
make
)
{
...
...
VirtualPayment/VirtualPayment/QGClasses/UserCenter/Function/SafeCenter/QGSafeBindSmsVerifyViewController.m
View file @
2590d0e7
...
...
@@ -191,6 +191,7 @@
if
(
self
.
bindSuccessBlock
)
{
self
.
bindSuccessBlock
(
YES
);
}
[
QGHUDManager
showHud
:
@"绑定成功"
];
[
self
.
navigationController
popViewControllerAnimated
:
YES
];
}
else
{
NSString
*
msg
=
responseObject
[
@"msg"
]?
responseObject
[
@"msg"
]:
@"授权失败"
;
...
...
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