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
f9802c60
Commit
f9802c60
authored
Jul 15, 2019
by
邢超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改属性位置
parent
68de6895
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
34 additions
and
23 deletions
+34
-23
QGLoginSelectResetPasswordTypeViewController.h
...Controller/QGLoginSelectResetPasswordTypeViewController.h
+2
-2
QGLoginSelectResetPasswordTypeViewController.m
...Controller/QGLoginSelectResetPasswordTypeViewController.m
+3
-0
QGMessageRegisterOrLoginViewController.h
...n/ViewController/QGMessageRegisterOrLoginViewController.h
+1
-2
QGMessageRegisterOrLoginViewController.m
...n/ViewController/QGMessageRegisterOrLoginViewController.m
+2
-1
QGSucceedRegisterSetPasswordViewController.h
...ewController/QGSucceedRegisterSetPasswordViewController.h
+1
-2
QGSucceedRegisterSetPasswordViewController.m
...ewController/QGSucceedRegisterSetPasswordViewController.m
+2
-0
QGRetriecePasswordViewController.h
...assword/ViewController/QGRetriecePasswordViewController.h
+0
-1
QGRetriecePasswordViewController.m
...assword/ViewController/QGRetriecePasswordViewController.m
+3
-0
QGSucceedRetrieceSetNewPasswordViewController.h
...ontroller/QGSucceedRetrieceSetNewPasswordViewController.h
+1
-9
QGSucceedRetrieceSetNewPasswordViewController.m
...ontroller/QGSucceedRetrieceSetNewPasswordViewController.m
+11
-0
QGVerifyCentreViewController.h
...erifyCentre/ViewController/QGVerifyCentreViewController.h
+1
-1
QGVerifyCentreViewController.m
...erifyCentre/ViewController/QGVerifyCentreViewController.m
+2
-0
QGHelpCenterViewController.h
...on/HelpCenter/ViewController/QGHelpCenterViewController.h
+1
-4
QGHelpCenterViewController.m
...on/HelpCenter/ViewController/QGHelpCenterViewController.m
+4
-1
No files found.
VirtualPayment/VirtualPayment/QGClasses/Login/Function/ForgetPassword/ViewController/QGLoginSelectResetPasswordTypeViewController.h
View file @
f9802c60
...
...
@@ -9,6 +9,6 @@
#import "QGBaseTableViewController.h"
@interface
QGLoginSelectResetPasswordTypeViewController
:
QGBaseTableViewController
///手机号
@property
(
nonatomic
,
copy
)
NSString
*
phoneNumberStr
;
@end
VirtualPayment/VirtualPayment/QGClasses/Login/Function/ForgetPassword/ViewController/QGLoginSelectResetPasswordTypeViewController.m
View file @
f9802c60
...
...
@@ -16,6 +16,9 @@
@property
(
nonatomic
,
copy
)
void
(
^
cellBlock
)(
void
);
///手机号
@property
(
nonatomic
,
copy
)
NSString
*
phoneNumberStr
;
@end
@implementation
QGBottomCell
...
...
VirtualPayment/VirtualPayment/QGClasses/Login/Function/RegisterOrVerifyLogin/ViewController/QGMessageRegisterOrLoginViewController.h
View file @
f9802c60
...
...
@@ -10,7 +10,6 @@
@interface
QGMessageRegisterOrLoginViewController
:
QGLoginBaseTableViewController
///注册手机号
@property
(
nonatomic
,
copy
)
NSString
*
phoneNumberStr
;
@end
VirtualPayment/VirtualPayment/QGClasses/Login/Function/RegisterOrVerifyLogin/ViewController/QGMessageRegisterOrLoginViewController.m
View file @
f9802c60
...
...
@@ -30,7 +30,8 @@
///获取短信验证码管理类
@property
(
nonatomic
,
strong
)
QGSendMessageCodeManger
*
sendVerifyCodeManger
;
///注册手机号
@property
(
nonatomic
,
copy
)
NSString
*
phoneNumberStr
;
@end
@implementation
QGMessageRegisterOrLoginViewController
...
...
VirtualPayment/VirtualPayment/QGClasses/Login/Function/RegisterOrVerifyLogin/ViewController/QGSucceedRegisterSetPasswordViewController.h
View file @
f9802c60
...
...
@@ -9,7 +9,6 @@
#import "QGLoginBaseTableViewController.h"
@interface
QGSucceedRegisterSetPasswordViewController
:
QGLoginBaseTableViewController
///注册成功手机号
@property
(
nonatomic
,
copy
)
NSString
*
phoneNumberStr
;
@end
VirtualPayment/VirtualPayment/QGClasses/Login/Function/RegisterOrVerifyLogin/ViewController/QGSucceedRegisterSetPasswordViewController.m
View file @
f9802c60
...
...
@@ -17,6 +17,8 @@
///记录输入的密码
@property
(
nonatomic
,
copy
)
NSString
*
password
;
///注册成功手机号
@property
(
nonatomic
,
copy
)
NSString
*
phoneNumberStr
;
@end
@implementation
QGSucceedRegisterSetPasswordViewController
...
...
VirtualPayment/VirtualPayment/QGClasses/Login/Function/RetrievePassword/ViewController/QGRetriecePasswordViewController.h
View file @
f9802c60
...
...
@@ -9,6 +9,5 @@
#import "QGLoginBaseTableViewController.h"
@interface
QGRetriecePasswordViewController
:
QGLoginBaseTableViewController
@property
(
nonatomic
,
copy
)
NSString
*
phoneNumberStr
;
@end
VirtualPayment/VirtualPayment/QGClasses/Login/Function/RetrievePassword/ViewController/QGRetriecePasswordViewController.m
View file @
f9802c60
...
...
@@ -29,6 +29,9 @@
@property
(
nonatomic
,
strong
)
UIButton
*
getCodeBtn
;
///获取短信验证码管理类
@property
(
nonatomic
,
strong
)
QGSendMessageCodeManger
*
sendVerifyCodeManger
;
@property
(
nonatomic
,
copy
)
NSString
*
phoneNumberStr
;
@end
@implementation
QGRetriecePasswordViewController
...
...
VirtualPayment/VirtualPayment/QGClasses/Login/Function/RetrievePassword/ViewController/QGSucceedRetrieceSetNewPasswordViewController.h
View file @
f9802c60
...
...
@@ -9,15 +9,7 @@
#import "QGLoginBaseTableViewController.h"
@interface
QGSucceedRetrieceSetNewPasswordViewController
:
QGLoginBaseTableViewController
@property
(
nonatomic
,
copy
)
NSString
*
phoneNumberStr
;
/// 临时token只做修改密码使用
@property
(
nonatomic
,
copy
)
NSString
*
token
;
/// 重置密码类型 “body”:活体,“code”:短信
@property
(
nonatomic
,
copy
)
NSString
*
resetType
;
///身份证号
@property
(
nonatomic
,
copy
)
NSString
*
idCard
;
///姓名
@property
(
nonatomic
,
copy
)
NSString
*
name
;
@end
VirtualPayment/VirtualPayment/QGClasses/Login/Function/RetrievePassword/ViewController/QGSucceedRetrieceSetNewPasswordViewController.m
View file @
f9802c60
...
...
@@ -23,6 +23,17 @@
@property
(
nonatomic
,
strong
)
QGPasswordInputWithTitleCell
*
secondCell
;
///下一步按钮,方便修改状态
@property
(
nonatomic
,
strong
)
QGGradientShadowButton
*
loginButton
;
///手机号
@property
(
nonatomic
,
copy
)
NSString
*
phoneNumberStr
;
/// 临时token只做修改密码使用
@property
(
nonatomic
,
copy
)
NSString
*
token
;
/// 重置密码类型 “body”:活体,“code”:短信
@property
(
nonatomic
,
copy
)
NSString
*
resetType
;
///身份证号
@property
(
nonatomic
,
copy
)
NSString
*
idCard
;
///姓名
@property
(
nonatomic
,
copy
)
NSString
*
name
;
@end
@implementation
QGSucceedRetrieceSetNewPasswordViewController
...
...
VirtualPayment/VirtualPayment/QGClasses/Login/Function/VerifyCentre/ViewController/QGVerifyCentreViewController.h
View file @
f9802c60
...
...
@@ -12,6 +12,6 @@
修改密码手机号不能接收短信
*/
@interface
QGVerifyCentreViewController
:
QGBaseTableViewController
@property
(
nonatomic
,
copy
)
NSString
*
phoneNumberStr
;
@end
VirtualPayment/VirtualPayment/QGClasses/Login/Function/VerifyCentre/ViewController/QGVerifyCentreViewController.m
View file @
f9802c60
...
...
@@ -11,6 +11,8 @@
#import "QGSelectTypeTableViewCell.h"
@interface
QGVerifyCentreViewController
()
@property
(
nonatomic
,
copy
)
NSString
*
phoneNumberStr
;
@end
@implementation
QGVerifyCentreViewController
...
...
VirtualPayment/VirtualPayment/QGClasses/UserCenter/Function/HelpCenter/ViewController/QGHelpCenterViewController.h
View file @
f9802c60
...
...
@@ -12,10 +12,7 @@
帮助中心
*/
@interface
QGHelpCenterViewController
:
QGBaseTableViewController
///享花卡激活状态
@property
(
nonatomic
,
copy
)
NSString
*
activateStatus
;
///提额URL(可为空)
@property
(
nonatomic
,
copy
)
NSString
*
increaseUrl
;
@end
VirtualPayment/VirtualPayment/QGClasses/UserCenter/Function/HelpCenter/ViewController/QGHelpCenterViewController.m
View file @
f9802c60
...
...
@@ -20,7 +20,10 @@
@property
(
nonatomic
,
strong
)
NSArray
*
noticesArray
;
///帮助中心全局模型
@property
(
nonatomic
,
strong
)
QGHelpCenterModel
*
helpCenterModel
;
///享花卡激活状态
@property
(
nonatomic
,
copy
)
NSString
*
activateStatus
;
///提额URL(可为空)
@property
(
nonatomic
,
copy
)
NSString
*
increaseUrl
;
@end
@implementation
QGHelpCenterViewController
...
...
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