Commit ac5a0d1c by zhukai

去掉提现金额限制

parent 82776811
No preview for this file type
......@@ -25,8 +25,8 @@
symbolName = "-[UIImageView(WebCache) sd_setImageWithURL:placeholderImage:options:progress:completed:]"
moduleName = "UniversalApp"
usesParentBreakpointCondition = "Yes"
urlString = "file:///Users/kaizhu/Desktop/zhongChaoMerchant_iOS/ZhongChaoApp/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m"
timestampString = "585227020.8235919"
urlString = "file:///Users/kaizhu/Desktop/%E6%9C%B12/zcApp/zhongChaoMerchant_iOS/ZhongChaoApp/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m"
timestampString = "587960231.7866549"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "88"
......@@ -40,8 +40,8 @@
symbolName = "__88-[UIImageView(WebCache) sd_setImageWithURL:placeholderImage:options:progress:completed:]_block_invoke.26"
moduleName = "UniversalApp"
usesParentBreakpointCondition = "Yes"
urlString = "file:///Users/kaizhu/Desktop/zhongChaoMerchant_iOS/ZhongChaoApp/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m"
timestampString = "585227020.82576"
urlString = "file:///Users/kaizhu/Desktop/%E6%9C%B12/zcApp/zhongChaoMerchant_iOS/ZhongChaoApp/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m"
timestampString = "587960231.795249"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "88"
......@@ -55,8 +55,8 @@
symbolName = "__88-[UIImageView(WebCache) sd_setImageWithURL:placeholderImage:options:progress:completed:]_block_invoke.26"
moduleName = "UniversalApp"
usesParentBreakpointCondition = "Yes"
urlString = "file:///Users/kaizhu/Desktop/zhongChaoMerchant_iOS/ZhongChaoApp/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m"
timestampString = "585227020.827732"
urlString = "file:///Users/kaizhu/Desktop/%E6%9C%B12/zcApp/zhongChaoMerchant_iOS/ZhongChaoApp/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m"
timestampString = "587960231.801577"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "88"
......@@ -70,8 +70,8 @@
symbolName = "__88-[UIImageView(WebCache) sd_setImageWithURL:placeholderImage:options:progress:completed:]_block_invoke.35"
moduleName = "UniversalApp"
usesParentBreakpointCondition = "Yes"
urlString = "file:///Users/kaizhu/Desktop/zhongChaoMerchant_iOS/ZhongChaoApp/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m"
timestampString = "585227020.829713"
urlString = "file:///Users/kaizhu/Desktop/%E6%9C%B12/zcApp/zhongChaoMerchant_iOS/ZhongChaoApp/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m"
timestampString = "587960231.808843"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "88"
......@@ -85,8 +85,8 @@
symbolName = "__88-[UIImageView(WebCache) sd_setImageWithURL:placeholderImage:options:progress:completed:]_block_invoke.35"
moduleName = "UniversalApp"
usesParentBreakpointCondition = "Yes"
urlString = "file:///Users/kaizhu/Desktop/zhongChaoMerchant_iOS/ZhongChaoApp/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m"
timestampString = "585227020.831596"
urlString = "file:///Users/kaizhu/Desktop/%E6%9C%B12/zcApp/zhongChaoMerchant_iOS/ZhongChaoApp/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m"
timestampString = "587960231.814024"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "88"
......
//
//
......@@ -141,20 +141,6 @@ static NSString *const kWithdrawInputCellId = @"ZCWithdrawInputCell";
return;
}
//校验最大最少提现金额
if ([_withdrawModel.withdrawMoney doubleValue] > [_withdrawModel.max_money doubleValue]) {
NSString *toast = [NSString stringWithFormat:@"不能多于%@元",_withdrawModel.max_money];
kShowToast(toast);
return;
}
//校验最大最少提现金额
if ([_withdrawModel.withdrawMoney doubleValue] < [_withdrawModel.min_money doubleValue]) {
NSString *toast = [NSString stringWithFormat:@"不能少于%@元",_withdrawModel.min_money];
kShowToast(toast);
return;
}
//检测是否有设置提现密码
[ZCTool showHudOnView:self.view];
[self.view endEditing:YES];
......@@ -180,7 +166,6 @@ static NSString *const kWithdrawInputCellId = @"ZCWithdrawInputCell";
}];
}
/**
输入密码回调
*/
......
//
//
......@@ -51,8 +51,8 @@
_protocolLbl.userInteractionEnabled = YES;
[_protocolLbl addGestureRecognizer:tap];
// _userNameTextField.text = @"13076148199";
// _passwordTextField.text = @"123456789";
_userNameTextField.text = @"13076148199";
_passwordTextField.text = @"123456789";
//
// _userNameTextField.text = @"13711114545";
// _passwordTextField.text = @"111111";
......
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