Commit 9bbc7da8 by ChenCD

提交1.2

parent 905d8be8
...@@ -2391,7 +2391,7 @@ ...@@ -2391,7 +2391,7 @@
ProvisioningStyle = Automatic; ProvisioningStyle = Automatic;
SystemCapabilities = { SystemCapabilities = {
com.apple.BackgroundModes = { com.apple.BackgroundModes = {
enabled = 1; enabled = 0;
}; };
com.apple.InAppPurchase = { com.apple.InAppPurchase = {
enabled = 1; enabled = 1;
......
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
type = "0"
version = "2.0">
<Breakpoints>
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
<BreakpointContent
shouldBeEnabled = "No"
ignoreCount = "0"
continueAfterRunningActions = "No"
filePath = "UniversalApp/Modules/Home/Controller/Withdraw[&#x63d0;&#x73b0;&#x7ba1;&#x7406;]/Withdraw[&#x63d0;&#x73b0;]/ZCWithdrawViewController.m"
timestampString = "587998760.879873"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "110"
endingLineNumber = "110"
landmarkName = "-updateInputCell:"
landmarkType = "7">
</BreakpointContent>
</BreakpointProxy>
</Breakpoints>
</Bucket>
// //
...@@ -80,8 +80,7 @@ static NSString *const kWithdrawInputCellId = @"ZCWithdrawInputCell"; ...@@ -80,8 +80,7 @@ static NSString *const kWithdrawInputCellId = @"ZCWithdrawInputCell";
_withdrawModel.charge = kSTRING(data[@"charge"]); _withdrawModel.charge = kSTRING(data[@"charge"]);
_withdrawModel.min_money = kSTRING(data[@"min_money"]); _withdrawModel.min_money = kSTRING(data[@"min_money"]);
_withdrawModel.max_money = kSTRING(data[@"max_money"]); _withdrawModel.max_money = kSTRING(data[@"max_money"]);
_withdrawModel.withdrawCharge = [NSString stringWithFormat:@"%.2f",[_withdrawModel.withdrawMoney doubleValue] * [_withdrawModel.charge doubleValue]]; _withdrawModel.withdrawCharge = [NSString stringWithFormat:@"%.2f",[_withdrawModel.withdrawMoney doubleValue]];
[_myTableView reloadData]; [_myTableView reloadData];
}]; }];
} }
...@@ -108,8 +107,9 @@ static NSString *const kWithdrawInputCellId = @"ZCWithdrawInputCell"; ...@@ -108,8 +107,9 @@ static NSString *const kWithdrawInputCellId = @"ZCWithdrawInputCell";
*/ */
-(void)updateInputCell:(ZCWithdrawInputCell *)cell{ -(void)updateInputCell:(ZCWithdrawInputCell *)cell{
_withdrawModel.withdrawCharge = [NSString stringWithFormat:@"%.2f",[_withdrawModel.withdrawMoney doubleValue] * [_withdrawModel.charge doubleValue]]; _withdrawModel.withdrawCharge = [NSString stringWithFormat:@"%.2f",[_withdrawModel.withdrawMoney doubleValue]];
NSLog(@"---------%@",_withdrawModel.withdrawCharge);
[cell paddingWithModel:_withdrawModel]; [cell paddingWithModel:_withdrawModel];
} }
......
// //
...@@ -29,16 +29,9 @@ ...@@ -29,16 +29,9 @@
-(void)paddingWithModel:(ZCWithdrawModel *)model{ -(void)paddingWithModel:(ZCWithdrawModel *)model{
//有输入提现金额 //有输入提现金额
if (model.withdrawCharge && model.withdrawMoney.length > 0) { _balanceLbl.text = [NSString stringWithFormat:@"可用余额 %.2f元",[kUserInfo.money doubleValue]];
_balanceLbl.text = [NSString stringWithFormat:@"手续费:%@",model.withdrawCharge]; _balanceLbl.font = kFont(12);
_balanceLbl.font = kFont(14);
}else{
_balanceLbl.text = [NSString stringWithFormat:@"可用余额 %.2f元",[kUserInfo.money doubleValue]];
_balanceLbl.font = kFont(12);
}
_inputTextField.text = kSTRING(model.withdrawMoney); _inputTextField.text = kSTRING(model.withdrawMoney);
} }
-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(nonnull NSString *)string{ -(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(nonnull NSString *)string{
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>1.1</string> <string>1.2</string>
<key>CFBundleURLTypes</key> <key>CFBundleURLTypes</key>
<array> <array>
<dict> <dict>
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
</dict> </dict>
</array> </array>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>1.1</string> <string>1.21</string>
<key>LSApplicationQueriesSchemes</key> <key>LSApplicationQueriesSchemes</key>
<array> <array>
<string>wechat</string> <string>wechat</string>
...@@ -100,12 +100,6 @@ ...@@ -100,12 +100,6 @@
<string>众巢商家版需要您的授权才能添加图片到相册</string> <string>众巢商家版需要您的授权才能添加图片到相册</string>
<key>NSPhotoLibraryUsageDescription</key> <key>NSPhotoLibraryUsageDescription</key>
<string>众巢商家版需要您的授权才能访问相册</string> <string>众巢商家版需要您的授权才能访问相册</string>
<key>UIBackgroundModes</key>
<array>
<string>audio</string>
<string>fetch</string>
<string>remote-notification</string>
</array>
<key>UIRequiredDeviceCapabilities</key> <key>UIRequiredDeviceCapabilities</key>
<array> <array>
<string>armv7</string> <string>armv7</string>
......
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