ASBaseViewController.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // ASBaseViewController.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/4/24.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ASJumpModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASBaseViewController : UIViewController
  11. @property (nonatomic, strong) UIView *statusBgV;
  12. @property (nonatomic, strong) UIView *customNavBar;
  13. @property (nonatomic, copy) NSString *titleStr;
  14. @property (nonatomic, strong) UIImage *titleImg;
  15. @property (nonatomic, strong) UIView *nav_bottomLineV;
  16. @property (nonatomic, strong) UILabel *nav_titleLB;
  17. - (void)ucHomeStyle:(btnClickBlock)tapSearch;
  18. - (void)setNavRightSearch:(btnClickBlock)nav_searchAction;
  19. - (void)hiddenEmpty;
  20. - (void)setEmptyTip:(NSString *)tipStr;
  21. - (void)showEmptyV:(UIView *)v;
  22. - (void)toHomeVc;
  23. - (void)popAndToLogin;
  24. - (void)toLoginVC;
  25. - (void)jumpWithModel:(ASJumpModel *)model;
  26. - (void)toWebVC:(NSString *)urlStr name:(NSString *)name;
  27. -(void)pushToProductList:(NSString *)name typeid:(NSString *)typeId;
  28. -(void)goto_WKM_GoodsDetailsC:(NSString *)entity_id;
  29. -(void)action_GoodsSizeC:(NSString *)entity_id;
  30. - (void)backAction;
  31. @end
  32. NS_ASSUME_NONNULL_END