// // SellerView.h // yunbaolive // // Created by ybRRR on 2020/1/16. // Copyright © 2020 cat. All rights reserved. // #import #import "YBAlertActionSheet.h" @interface SellerView : UIView { UIView *backView1; UIView *backView2; UIView *backView3; UIImageView *headImg; UIButton *scoreBtn; NSArray *priceTitleArr; NSArray *orderTitleArr; UIButton *balanceBtn;//账户余额 UIButton *allIncomeBtn;//全部收入 UIButton *waitPayBtn;//待付款 UIButton *waitSendBtn;//待付款 UIButton *waitRefundBtn;//待退款 UILabel *sellerInfoLb; UILabel *msgTaglb; NSDictionary *shopInfo; int unRead;//未读消息 } @property (nonatomic, strong) YBAlertActionSheet *actionSheet; -(void)requstData; -(void)getUnreadCount; @end