// // FKSubmitOrderBottomView.h // FirstLink // // Created by jack on 16/1/19. // Copyright © 2016年 FirstLink. All rights reserved. // #import @interface FKSubmitOrderBottomView : UIView @property (nonatomic, strong) UILabel *priceLabel; @property (nonatomic, strong) UIButton *confirmBtn; @property (nonatomic, assign) BOOL enabled; - (void)refreshPriceWithAmount:(long)amount totalFee:(CGFloat)totalFee; - (void)refreshPriceWithAmount:(long)amount totalFee:(CGFloat)totalFee discountFee:(CGFloat)discountFee; @end