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
e1e0fedb
Commit
e1e0fedb
authored
May 27, 2020
by
IOS-张 博
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改首页字号,去除爱加密
parent
bfb0b34a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
57 deletions
+7
-57
project.pbxproj
VirtualPayment/VirtualPayment.xcodeproj/project.pbxproj
+2
-52
QGCardAccountSegmentView.m
...tion/QGCard/View/QGCardAccount/QGCardAccountSegmentView.m
+2
-2
QGRegisterViewController.m
...erOrVerifyLogin/ViewController/QGRegisterViewController.m
+3
-3
No files found.
VirtualPayment/VirtualPayment.xcodeproj/project.pbxproj
View file @
e1e0fedb
...
...
@@ -6781,32 +6781,7 @@
);
MARKETING_VERSION
=
6.5.48
;
MiSDKRun
=
debug
;
OTHER_CFLAGS
=
(
"-mllvm"
,
"-falsify-control-flow"
,
"-mllvm"
,
"-falsify-control-flow-percentage=80"
,
"-mllvm"
,
"-falsify-control-flow-probability=20"
,
"-mllvm"
,
"-transform-operator-identically"
,
"-mllvm"
,
"-transform-operator-identically-loop=1"
,
"-mllvm"
,
"-split-basic-block"
,
"-mllvm"
,
"-split-basic-block-number=2"
,
"-mllvm"
,
"-indirection-control-flow"
,
"-mllvm"
,
"-indirection-control-flow-probability=80"
,
"-mllvm"
,
"-encrypt-constant-string"
,
"-mllvm"
,
"-encrypt-constant-string-level=1"
,
"-mllvm"
,
"-encrypt-constant-string-probability=70"
,
);
OTHER_CFLAGS
=
""
;
OTHER_LDFLAGS
=
(
"-ObjC"
,
"-lz"
,
...
...
@@ -6883,32 +6858,7 @@
);
MARKETING_VERSION
=
6.5.48
;
MiSDKRun
=
online
;
OTHER_CFLAGS
=
(
"-mllvm"
,
"-falsify-control-flow"
,
"-mllvm"
,
"-falsify-control-flow-percentage=80"
,
"-mllvm"
,
"-falsify-control-flow-probability=20"
,
"-mllvm"
,
"-transform-operator-identically"
,
"-mllvm"
,
"-transform-operator-identically-loop=1"
,
"-mllvm"
,
"-split-basic-block"
,
"-mllvm"
,
"-split-basic-block-number=2"
,
"-mllvm"
,
"-indirection-control-flow"
,
"-mllvm"
,
"-indirection-control-flow-probability=80"
,
"-mllvm"
,
"-encrypt-constant-string"
,
"-mllvm"
,
"-encrypt-constant-string-level=1"
,
"-mllvm"
,
"-encrypt-constant-string-probability=70"
,
);
OTHER_CFLAGS
=
""
;
OTHER_LDFLAGS
=
(
"-ObjC"
,
"-lz"
,
...
...
VirtualPayment/VirtualPayment/QGClasses/Card/Function/QGCard/View/QGCardAccount/QGCardAccountSegmentView.m
View file @
e1e0fedb
...
...
@@ -69,13 +69,13 @@
self
.
tagView
.
backgroundColor
=
[
UIColor
colorWithHexString
:
@"FF2121"
];
[
self
addSubview
:
self
.
tagView
];
[
self
.
tagView
mas_makeConstraints
:
^
(
MASConstraintMaker
*
make
)
{
make
.
height
.
mas_equalTo
(
1
1
);
make
.
height
.
mas_equalTo
(
1
4
);
make
.
right
.
mas_equalTo
(
self
.
savingsButton
.
mas_right
).
offset
(
10
);
make
.
bottom
.
mas_equalTo
(
self
.
savingsButton
.
mas_top
).
offset
(
7
);
}];
//标签label
self
.
tagLabel
=
[
UILabel
creatLabelWithSuperView
:
self
.
tagLabel
title
:
nil
titleFontSize
:
[
UIFont
qg_mediumFontOfSize
:
7
]
textColor
:
[
UIColor
whiteColor
]
alignment
:
NSTextAlignmentCenter
];
self
.
tagLabel
=
[
UILabel
creatLabelWithSuperView
:
self
.
tagLabel
title
:
nil
titleFontSize
:
[
UIFont
qg_mediumFontOfSize
:
9
]
textColor
:
[
UIColor
whiteColor
]
alignment
:
NSTextAlignmentCenter
];
[
self
.
tagView
addSubview
:
self
.
tagLabel
];
[
self
.
tagLabel
mas_makeConstraints
:
^
(
MASConstraintMaker
*
make
)
{
make
.
left
.
right
.
inset
(
4
);
...
...
VirtualPayment/VirtualPayment/QGClasses/Login/Function/QGRegisterOrVerifyLogin/ViewController/QGRegisterViewController.m
View file @
e1e0fedb
...
...
@@ -115,13 +115,13 @@
/// 检测微信是否绑定
-
(
void
)
checkWechatBinding
{
if
([
NSString
isEmpty
:
self
.
wechatInfoModel
.
ope
nid
])
{
if
([
NSString
isEmpty
:
self
.
wechatInfoModel
.
unio
nid
])
{
return
;
}
NSString
*
urlString
=
[
QGLoginRequestApi
urlWithQGLoginRequestServerMethod
:
QGLoginRequestServerMethodCheckWechatBinding
];
urlString
=
@"http://yapi.quantgroups.com/mock/305/vcc/external/login/weChat_opId"
;
NSDictionary
*
infoDic
=
@{
@"
openId"
:
self
.
wechatInfoModel
.
ope
nid
};
NSDictionary
*
infoDic
=
@{
@"
unionid"
:
self
.
wechatInfoModel
.
unio
nid
};
[
QGHUDManager
showHud
:
nil
];
[[
QGTalosNetwork
shareManager
]
POST
:
urlString
parameters
:
infoDic
success
:^
(
id
_Nonnull
responseObject
)
{
[
QGHUDManager
hideHud
];
...
...
@@ -447,7 +447,7 @@
// NSLog(@"identityToken: %@", identityToken);
self
.
appleInfoModel
=
[[
QGAppleInfoModel
alloc
]
init
];
self
.
appleInfoModel
.
userID
=
userID
;
self
.
appleInfoModel
.
fullName
=
fullName
;
self
.
appleInfoModel
.
fullName
=
[
NSString
stringWithFormat
:
@"%@"
,
fullName
]
;
self
.
appleInfoModel
.
authorizationCode
=
authorizationCode
;
self
.
appleInfoModel
.
identityToken
=
identityToken
;
[
self
checkAppleBinding
];
...
...
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