NewDispatchRequirementGoodsDetailController.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. // NewDispatchRequirementGoodsDetailController.h
  3. // IBOSS-HJ
  4. //
  5. // Created by 关宏厚 on 2021/1/28.
  6. // Copyright © 2021 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "DispatchNoReceiptModel.h"
  10. #import "NewDispatchRequirementCell.h"
  11. #import "BRDatePickerView.h"
  12. #import "PayTypeVC.h"
  13. #import "StatusInfo.h"
  14. #import "MHRadioButton.h"
  15. #define kTextFont [UIFont systemFontOfSize:LabelAndTextFontOfSize]
  16. #define kTitleFont [UIFont systemFontOfSize:14]
  17. @interface NewDispatchRequirementGoodsDetailController : BaseViewController<UIScrollViewDelegate,UITableViewDataSource,UITableViewDelegate,DeliveryListTableViewCellDetegate,NewDispatchRequirementKeyBoardDelegate,UITextFieldDelegate,StatusInfoTextDelegate,MHRadioButtonDelegate>
  18. /**
  19. table view
  20. */
  21. @property (strong,nonatomic) UITableView *myTableView;
  22. @property (strong,nonatomic) NSString *collectDetailId;
  23. @property (strong,nonatomic) NSMutableArray *arrayStatus;
  24. @property (nonatomic)BOOL keyboardShow;
  25. -(void)loadData;
  26. /**
  27. 下载管理器
  28. */
  29. @property (nonatomic,strong) ASIDownManager *mDownManager;
  30. @property(nonatomic,strong) DispatchNoReceiptModel *noReceiptModel;
  31. @property(nonatomic,strong) NSMutableArray *dataList;
  32. @property(nonatomic,strong) NSString *sReceiptType;
  33. @property(nonatomic,strong)UILabel *lblTelephone;
  34. @property(nonatomic,strong)UITextField *txtPlateNumber;
  35. @property(nonatomic,strong)UILabel *lblTitlePlateNumber;
  36. @property(nonatomic,strong) UILabel *lbDeliveryAddress;
  37. @property(nonatomic,strong) MHRadioButton *btnDeliveryType;
  38. @property(nonatomic,strong) MHRadioButton *btnInstallType;
  39. @property(nonatomic,strong) MHRadioButton *btnDeliveryInstallType;
  40. @property(nonatomic,strong) CAShapeLayer *btnDeliveryInstallMaskLayer;
  41. @property(nonatomic,strong) NSString *receiptFlag;
  42. @property(nonatomic,strong) CAShapeLayer *btnDeliveryMaskLayer;
  43. @property(nonatomic,strong) NSString *sNextDeliveryDate;
  44. @property(nonatomic,strong)UIButton *btnNextDeliveryDate;
  45. @property(nonatomic,strong)UINavigationController *cNav;
  46. @property (strong)BRDatePickerView *dealDatePicker;
  47. @end