| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- //
- // NewDispatchRequirementGoodsDetailController.h
- // IBOSS-HJ
- //
- // Created by 关宏厚 on 2021/1/28.
- // Copyright © 2021 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "DispatchNoReceiptModel.h"
- #import "NewDispatchRequirementCell.h"
- #import "BRDatePickerView.h"
- #import "PayTypeVC.h"
- #import "StatusInfo.h"
- #import "MHRadioButton.h"
- #define kTextFont [UIFont systemFontOfSize:LabelAndTextFontOfSize]
- #define kTitleFont [UIFont systemFontOfSize:14]
- @interface NewDispatchRequirementGoodsDetailController : BaseViewController<UIScrollViewDelegate,UITableViewDataSource,UITableViewDelegate,DeliveryListTableViewCellDetegate,NewDispatchRequirementKeyBoardDelegate,UITextFieldDelegate,StatusInfoTextDelegate,MHRadioButtonDelegate>
- /**
- table view
- */
- @property (strong,nonatomic) UITableView *myTableView;
- @property (strong,nonatomic) NSString *collectDetailId;
- @property (strong,nonatomic) NSMutableArray *arrayStatus;
- @property (nonatomic)BOOL keyboardShow;
- -(void)loadData;
- /**
- 下载管理器
- */
- @property (nonatomic,strong) ASIDownManager *mDownManager;
- @property(nonatomic,strong) DispatchNoReceiptModel *noReceiptModel;
- @property(nonatomic,strong) NSMutableArray *dataList;
- @property(nonatomic,strong) NSString *sReceiptType;
- @property(nonatomic,strong)UILabel *lblTelephone;
- @property(nonatomic,strong)UITextField *txtPlateNumber;
- @property(nonatomic,strong)UILabel *lblTitlePlateNumber;
- @property(nonatomic,strong) UILabel *lbDeliveryAddress;
- @property(nonatomic,strong) MHRadioButton *btnDeliveryType;
- @property(nonatomic,strong) MHRadioButton *btnInstallType;
- @property(nonatomic,strong) MHRadioButton *btnDeliveryInstallType;
- @property(nonatomic,strong) CAShapeLayer *btnDeliveryInstallMaskLayer;
- @property(nonatomic,strong) NSString *receiptFlag;
- @property(nonatomic,strong) CAShapeLayer *btnDeliveryMaskLayer;
- @property(nonatomic,strong) NSString *sNextDeliveryDate;
- @property(nonatomic,strong)UIButton *btnNextDeliveryDate;
- @property(nonatomic,strong)UINavigationController *cNav;
- @property (strong)BRDatePickerView *dealDatePicker;
- @end
|