SellerView.h 852 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // SellerView.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/1/16.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YBAlertActionSheet.h"
  10. @interface SellerView : UIView<JMessageDelegate>
  11. {
  12. UIView *backView1;
  13. UIView *backView2;
  14. UIView *backView3;
  15. UIImageView *headImg;
  16. UIButton *scoreBtn;
  17. NSArray *priceTitleArr;
  18. NSArray *orderTitleArr;
  19. UIButton *balanceBtn;//账户余额
  20. UIButton *allIncomeBtn;//全部收入
  21. UIButton *waitPayBtn;//待付款
  22. UIButton *waitSendBtn;//待付款
  23. UIButton *waitRefundBtn;//待退款
  24. UILabel *sellerInfoLb;
  25. UILabel *msgTaglb;
  26. NSDictionary *shopInfo;
  27. int unRead;//未读消息
  28. }
  29. @property (nonatomic, strong) YBAlertActionSheet *actionSheet;
  30. -(void)requstData;
  31. -(void)getUnreadCount;
  32. @end