123456789101112131415161718192021222324252627282930 |
- //
- // FKSubmitSingleChannelView.h
- // FirstLink
- //
- // Created by jack on 16/1/19.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FKTransformChannelItem.h"
- @interface FKSubmitSingleChannelView : UIView
- @property (nonatomic, assign) kSubmitChannelType channelType;
- @property (nonatomic, strong) UILabel *channelLabel;
- @property (nonatomic, strong) UILabel *ruleLabel;
- @property (nonatomic, strong) UILabel *priceLabel;
- //@property (nonatomic, strong) UILabel *priceCutLabel;
- @property (nonatomic, strong) UILabel *billWightLabel;
- @property (nonatomic, strong) UIView *bottomLine;
- @property (nonatomic, strong) UIButton *clickActionBtn;
- @property (nonatomic, strong) UIButton *arrowBtn;
- - (void)resetContentForChannelItem:(FKTransformChannelItem *)channelItem
- enable:(BOOL)enable
- billWeight:(NSString *)billWeight;
- @end
|