| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // RAOrderEditViewController.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/4.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import "RABaseViewController.h"
- @class RAEditBaseModel;
- @interface RAOrderEditViewController : RABaseViewController
- @property (nonatomic,copy) NSString *orderID;
- @property (nonatomic,assign) NSInteger actionID;
- @property (nonatomic,assign) NSInteger actionIdx;
- @property (nonatomic,copy) NSString *actionTitle;
- @property (nonatomic,copy) NSString *orderType2;
- @property (nonatomic,strong,readonly) UITableView *tableView;
- @property (nonatomic,strong) NSIndexPath *editingIndexPath;
- - (NSUInteger)editSectionCount;
- - (NSInteger)itemCountForSection:(NSInteger)section;
- - (NSString *)titleForSection:(NSInteger)section;
- - (RAEditBaseModel *)modelForIndexPath:(NSIndexPath *)indexPath;
- - (NSIndexPath *)indexPathForCell:(UITableViewCell *)cell;
- - (void)expandIndexPath:(NSIndexPath *)indexPath withJsonItem:(NSDictionary *)item;
- @property (weak, nonatomic) IBOutlet UILabel *label_cache;
- @end
|