| 1234567891011121314151617181920212223242526272829303132 |
- //
- // DepositAmountVC.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/7/24.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FeeAmountCell.h"
- @protocol FeeAmountDelegate <NSObject>
- -(void)callbackDepositAmount:(NSMutableArray *) arry;
- @end
- @interface FeeAmountVC :BaseViewController<UITableViewDataSource,UITableViewDelegate,FeeAmountCellDelegate>
- @property (nonatomic,strong) UITableView *vTableView;
- @property(nonatomic,weak) id<FeeAmountDelegate> feeAmountDelegate;
- @property (nonatomic,strong) NSMutableArray *feeList;
- /**
- 拷贝的数组
- */
- @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
|