| 1234567891011121314151617181920212223242526272829 |
- //
- // UseEarnestAmountVC.h
- // IBOSSmini
- //
- // Created by ssl on 2018/2/28.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "OrderListDelegate.h"
- #import "UseEarnestAmountModel.h"
- #import "UseEarnestAmountCell.h"
- @protocol UseEarnestAmountDelegate <NSObject>
- -(void)callbackUseEarnestAmount:(NSMutableArray *) arry;
- @end
- @interface UseEarnestAmountVC :BaseViewController<UITableViewDataSource,UITableViewDelegate>
- @property (nonatomic,strong) UITableView *vTableView;
- @property(nonatomic,weak) id<UseEarnestAmountDelegate> useEarnestAmountDelegate;
- @property (nonatomic,strong) NSMutableArray *earnestList;
- /**
- 拷贝的数组
- */
- @property (nonatomic,strong) NSMutableArray *arr;
- @property (nonatomic,assign) double goodsAmount;
- @property(nonatomic,assign) int editFLag;
- @property(nonatomic,strong) NSString *orderId;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @end
|