| 1234567891011121314151617181920212223242526272829303132 |
- //
- // BuyerView.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/1/16.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface BuyerView : UIView
- {
- UIImageView *headImg; //头部背景
- UIView *backView1;
- UIView *backView2;
- UIView *backView3;
-
- UILabel *wait_payLb;//待付款
- UILabel *wait_sendLb;//待发货
- UILabel *wait_receiveLb;//待收货
- UILabel *wait_evaluateLb;//待评价
- UILabel *wait_refundLb;//待退货
- NSString *shopStatus;
- }
- -(void)requstData;
- @end
- NS_ASSUME_NONNULL_END
|