Commit 9bbc7da8 by ChenCD

提交1.2

parent 905d8be8
......@@ -2391,7 +2391,7 @@
ProvisioningStyle = Automatic;
SystemCapabilities = {
com.apple.BackgroundModes = {
enabled = 1;
enabled = 0;
};
com.apple.InAppPurchase = {
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";
_withdrawModel.charge = kSTRING(data[@"charge"]);
_withdrawModel.min_money = kSTRING(data[@"min_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];
}];
}
......@@ -108,8 +107,9 @@ static NSString *const kWithdrawInputCellId = @"ZCWithdrawInputCell";
*/
-(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];
}
......
//
//
......@@ -29,16 +29,9 @@
-(void)paddingWithModel:(ZCWithdrawModel *)model{
//有输入提现金额
if (model.withdrawCharge && model.withdrawMoney.length > 0) {
_balanceLbl.text = [NSString stringWithFormat:@"手续费:%@",model.withdrawCharge];
_balanceLbl.font = kFont(14);
}else{
_balanceLbl.text = [NSString stringWithFormat:@"可用余额 %.2f元",[kUserInfo.money doubleValue]];
_balanceLbl.font = kFont(12);
}
_balanceLbl.text = [NSString stringWithFormat:@"可用余额 %.2f元",[kUserInfo.money doubleValue]];
_balanceLbl.font = kFont(12);
_inputTextField.text = kSTRING(model.withdrawMoney);
}
-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(nonnull NSString *)string{
......
......@@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1</string>
<string>1.2</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
......@@ -46,7 +46,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>1.1</string>
<string>1.21</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>wechat</string>
......@@ -100,12 +100,6 @@
<string>众巢商家版需要您的授权才能添加图片到相册</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>众巢商家版需要您的授权才能访问相册</string>
<key>UIBackgroundModes</key>
<array>
<string>audio</string>
<string>fetch</string>
<string>remote-notification</string>
</array>
<key>UIRequiredDeviceCapabilities</key>
<array>
<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