123456789101112131415161718192021 |
- //
- // FKSubmitOrderBottomView.h
- // FirstLink
- //
- // Created by jack on 16/1/19.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @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
|