Commit f02f4509 by 刘卓鑫

1.更改手机号 参数传错了 导致校验验证码失败

2.设置中切换系统记扣提示文字更改。 3.图像验证码增加占位图。
parent 906f91c3
...@@ -4851,7 +4851,7 @@ ...@@ -4851,7 +4851,7 @@
enabled = 1; enabled = 1;
}; };
com.apple.SafariKeychain = { com.apple.SafariKeychain = {
enabled = 1; enabled = 0;
}; };
}; };
}; };
......
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
</AdditionalOptions> </AdditionalOptions>
</TestAction> </TestAction>
<LaunchAction <LaunchAction
buildConfiguration = "Debug" buildConfiguration = "Release"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0" launchStyle = "0"
......
...@@ -35,14 +35,46 @@ ...@@ -35,14 +35,46 @@
shouldBeEnabled = "Yes" shouldBeEnabled = "Yes"
ignoreCount = "0" ignoreCount = "0"
continueAfterRunningActions = "No" continueAfterRunningActions = "No"
filePath = "ColorfulSchool/Classes/AD(&#x5e7f;&#x544a;)/ZXTXAdTool.m" filePath = "ColorfulSchool/Classes/MineView(&#x4e2a;&#x4eba;&#x4e2d;&#x5fc3;)/UserSetting/ChangePasswordAndPhone/Controller/ZXChangeMsgViewController.m"
timestampString = "589796272.887374" timestampString = "590396147.029526"
startingColumnNumber = "9223372036854775807" startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807"
startingLineNumber = "86" startingLineNumber = "289"
endingLineNumber = "86" endingLineNumber = "289"
landmarkName = "-splashAdFailToPresent:withError:" landmarkName = "-changeAction"
landmarkType = "7"> landmarkType = "7">
<Locations>
<Location
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
symbolName = "__41-[ZXChangeMsgViewController changeAction]_block_invoke.277"
moduleName = "ColorfulSchool"
usesParentBreakpointCondition = "Yes"
urlString = "file:///Users/liuzhuoxin/codeStore/colorfulSchoolReconsitution/ColorfulSchool/ColorfulSchool/Classes/MineView(%E4%B8%AA%E4%BA%BA%E4%B8%AD%E5%BF%83)/UserSetting/ChangePasswordAndPhone/Controller/ZXChangeMsgViewController.m"
timestampString = "590396147.429444"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "289"
endingLineNumber = "289"
offsetFromSymbolStart = "24">
</Location>
<Location
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
symbolName = "__41-[ZXChangeMsgViewController changeAction]_block_invoke_2.279"
moduleName = "ColorfulSchool"
usesParentBreakpointCondition = "Yes"
urlString = "file:///Users/liuzhuoxin/codeStore/colorfulSchoolReconsitution/ColorfulSchool/ColorfulSchool/Classes/MineView(%E4%B8%AA%E4%BA%BA%E4%B8%AD%E5%BF%83)/UserSetting/ChangePasswordAndPhone/Controller/ZXChangeMsgViewController.m"
timestampString = "590396147.4322031"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "290"
endingLineNumber = "290"
offsetFromSymbolStart = "16">
</Location>
</Locations>
</BreakpointContent> </BreakpointContent>
</BreakpointProxy> </BreakpointProxy>
</Breakpoints> </Breakpoints>
......
...@@ -84,7 +84,7 @@ ...@@ -84,7 +84,7 @@
// [kAppWindow addSubview:fps]; // [kAppWindow addSubview:fps];
//默认配置 //默认配置
[self defaultLauchConfigAndIsOpenPreventCrashManager:NO]; [self defaultLauchConfigAndIsOpenPreventCrashManager:YES];
//防止蓝牙洗浴后台运行被系统中断 //防止蓝牙洗浴后台运行被系统中断
......
// //
...@@ -166,7 +166,7 @@ ...@@ -166,7 +166,7 @@
if (iPhoneX) { if (iPhoneX) {
bottomH = 34; bottomH = 34;
} }
_myTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, kTopHeight + 13 * k6Scale, kScreenWidth, kScreenHeight - bottomH - 49 - kTopHeight - 35 * k6Scale) style:UITableViewStyleGrouped]; _myTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, kTopHeight + 13 * k6Scale, kScreenWidth, kScreenHeight - bottomH - 49 - kTopHeight - 13 * k6Scale) style:UITableViewStyleGrouped];
_myTableView.delegate = self; _myTableView.delegate = self;
_myTableView.dataSource = self; _myTableView.dataSource = self;
......
// //
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
@interface MQVerCodeImageView () @interface MQVerCodeImageView ()
@property (nonatomic, strong) NSArray *textArray; @property (nonatomic, strong) NSArray *textArray;
@property (nonatomic, strong) UIView *bgView; @property (nonatomic, strong) UIView *bgView;
@property (nonatomic, strong) UIImageView *holderView;
@end @end
...@@ -21,12 +22,20 @@ ...@@ -21,12 +22,20 @@
{ {
self = [super initWithFrame:frame]; self = [super initWithFrame:frame];
if (self) { if (self) {
self.holderView = [[UIImageView alloc] initWithFrame:self.bounds];
[self addSubview:self.holderView];
self.holderView.image = [UIImage imageNamed:@"ic_shuaxin"];
} }
return self; return self;
} }
-(void)refreshVerCodeByStr:(NSString *) code -(void)refreshVerCodeByStr:(NSString *) code
{ {
if (code == nil || [code isEqualToString:@""]) {
return;
}
self.holderView.hidden = YES;
self.imageCodeStr = code; self.imageCodeStr = code;
dispatch_async(dispatch_get_main_queue(), ^{ dispatch_async(dispatch_get_main_queue(), ^{
[self initImageCodeView]; [self initImageCodeView];
......
// //
...@@ -182,7 +182,7 @@ ...@@ -182,7 +182,7 @@
} }
//开始获取验证码 //开始获取验证码
NSString *url = [NSString stringWithFormat:@"%@/app/customer/phone/message?cellphone=%@&codeNum=6&businessNum=5",[kUserDefaults valueForKey:@"NEW_PAY"], self.view2.textField.text]; NSString *url = [NSString stringWithFormat:@"%@/app/customer/phone/message?cellphone=%@&codeNum=6&businessNum=4",[kUserDefaults valueForKey:@"NEW_PAY"], self.view2.textField.text];
[ZXTool requestDataWithType:kXMHTTPMethodGET url:url para:nil completed:^(CommonModel *common, NSString *error) { [ZXTool requestDataWithType:kXMHTTPMethodGET url:url para:nil completed:^(CommonModel *common, NSString *error) {
dispatch_async(dispatch_get_main_queue(), ^{ dispatch_async(dispatch_get_main_queue(), ^{
[ZXTool hideLoadingAnimation]; [ZXTool hideLoadingAnimation];
......
// //
...@@ -332,7 +332,7 @@ typedef void(^isCanChange)(BOOL iCan); ...@@ -332,7 +332,7 @@ typedef void(^isCanChange)(BOOL iCan);
dispatch_async(dispatch_get_main_queue(), ^{ dispatch_async(dispatch_get_main_queue(), ^{
//弹窗提示 //弹窗提示
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"关闭后将切换至订单单笔支付模式" preferredStyle:UIAlertControllerStyleAlert]; UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"关闭后,将切换至订单支付模式。" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *ac1 = [UIAlertAction actionWithTitle:@"取消" style:0 handler:^(UIAlertAction * _Nonnull action) { UIAlertAction *ac1 = [UIAlertAction actionWithTitle:@"取消" style:0 handler:^(UIAlertAction * _Nonnull action) {
m.switchIsOn = !m.switchIsOn; m.switchIsOn = !m.switchIsOn;
[self.myTableView reloadData]; [self.myTableView reloadData];
...@@ -366,7 +366,7 @@ typedef void(^isCanChange)(BOOL iCan); ...@@ -366,7 +366,7 @@ typedef void(^isCanChange)(BOOL iCan);
if (isCan) { if (isCan) {
dispatch_async(dispatch_get_main_queue(), ^{ dispatch_async(dispatch_get_main_queue(), ^{
//弹窗提示 //弹窗提示
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"您将切换使用预充值模式,消费时请保证账号有余额。" preferredStyle:UIAlertControllerStyleAlert]; UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"您将切换成快捷使用模式,消费时请保证账号有余额。" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *ac1 = [UIAlertAction actionWithTitle:@"取消" style:0 handler:^(UIAlertAction * _Nonnull action) { UIAlertAction *ac1 = [UIAlertAction actionWithTitle:@"取消" style:0 handler:^(UIAlertAction * _Nonnull action) {
m.switchIsOn = !m.switchIsOn; m.switchIsOn = !m.switchIsOn;
[self.myTableView reloadData]; [self.myTableView reloadData];
......
...@@ -4,10 +4,6 @@ ...@@ -4,10 +4,6 @@
<dict> <dict>
<key>aps-environment</key> <key>aps-environment</key>
<string>development</string> <string>development</string>
<key>com.apple.developer.associated-domains</key>
<array>
<string>applinks:https://www.dcrym.com/checktomcatstatus/</string>
</array>
<key>keychain-access-groups</key> <key>keychain-access-groups</key>
<array> <array>
<string>$(AppIdentifierPrefix)com.pxkjformal.parallelcampus</string> <string>$(AppIdentifierPrefix)com.pxkjformal.parallelcampus</string>
......
...@@ -440,7 +440,7 @@ ...@@ -440,7 +440,7 @@
</dict> </dict>
</array> </array>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>1.0</string> <string>1.2</string>
<key>LSApplicationQueriesSchemes</key> <key>LSApplicationQueriesSchemes</key>
<array> <array>
<string>jdlogin</string> <string>jdlogin</string>
......
{
"images" : [
{
"idiom" : "universal",
"filename" : "ic_shuaxin.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "ic_shuaxin@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "ic_shuaxin@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment