BuyerView.h 593 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // BuyerView.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. NS_ASSUME_NONNULL_BEGIN
  10. @interface BuyerView : UIView
  11. {
  12. UIImageView *headImg; //头部背景
  13. UIView *backView1;
  14. UIView *backView2;
  15. UIView *backView3;
  16. UILabel *wait_payLb;//待付款
  17. UILabel *wait_sendLb;//待发货
  18. UILabel *wait_receiveLb;//待收货
  19. UILabel *wait_evaluateLb;//待评价
  20. UILabel *wait_refundLb;//待退货
  21. NSString *shopStatus;
  22. }
  23. -(void)requstData;
  24. @end
  25. NS_ASSUME_NONNULL_END