1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // ASBaseViewController.h
- // Asteria
- //
- // Created by iOS on 2023/4/24.
- //
- #import <UIKit/UIKit.h>
- #import "ASJumpModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ASBaseViewController : UIViewController
- @property (nonatomic, strong) UIView *statusBgV;
- @property (nonatomic, strong) UIView *customNavBar;
- @property (nonatomic, copy) NSString *titleStr;
- @property (nonatomic, strong) UIImage *titleImg;
- @property (nonatomic, strong) UIView *nav_bottomLineV;
- @property (nonatomic, strong) UILabel *nav_titleLB;
- - (void)ucHomeStyle:(btnClickBlock)tapSearch;
- - (void)setNavRightSearch:(btnClickBlock)nav_searchAction;
- - (void)hiddenEmpty;
- - (void)setEmptyTip:(NSString *)tipStr;
- - (void)showEmptyV:(UIView *)v;
- - (void)toHomeVc;
- - (void)popAndToLogin;
- - (void)toLoginVC;
- - (void)jumpWithModel:(ASJumpModel *)model;
- - (void)toWebVC:(NSString *)urlStr name:(NSString *)name;
- -(void)pushToProductList:(NSString *)name typeid:(NSString *)typeId;
- -(void)goto_WKM_GoodsDetailsC:(NSString *)entity_id;
- -(void)action_GoodsSizeC:(NSString *)entity_id;
- - (void)backAction;
- - (void)toOrderListVc;
- @end
- NS_ASSUME_NONNULL_END
|