| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // SellerView.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/1/16.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YBAlertActionSheet.h"
- @interface SellerView : UIView<JMessageDelegate>
- {
- 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
|