Açıklama Yok

FKSubmitOrderBottomView.h 558B

123456789101112131415161718192021
  1. //
  2. // FKSubmitOrderBottomView.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/1/19.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface FKSubmitOrderBottomView : UIView
  10. @property (nonatomic, strong) UILabel *priceLabel;
  11. @property (nonatomic, strong) UIButton *confirmBtn;
  12. @property (nonatomic, assign) BOOL enabled;
  13. - (void)refreshPriceWithAmount:(long)amount totalFee:(CGFloat)totalFee;
  14. - (void)refreshPriceWithAmount:(long)amount totalFee:(CGFloat)totalFee discountFee:(CGFloat)discountFee;
  15. @end