NYComplaintPageViewController.h 915 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // NYComplaintPageViewController.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2023/6/30.
  6. // Copyright © 2023 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NYComplaintPageViewController : UIViewController
  11. @property (nonatomic ,strong) NSMutableArray *image_idArray;
  12. @property (nonatomic ,strong) NSMutableArray *assestArray;
  13. @property BOOL isSelectOriginalPhoto;
  14. @property (nonatomic ,strong) UICollectionView *collectionView;
  15. @property (nonatomic ,strong) NSMutableArray *photosArray;
  16. //手机号码
  17. @property (weak, nonatomic) IBOutlet UITextField *phone_textfield;
  18. //投诉
  19. @property (weak, nonatomic) IBOutlet UIButton *px_button;
  20. @property (nonatomic,strong) UIButton *currentType_button;
  21. //提交
  22. @property (weak, nonatomic) IBOutlet UIButton *submit_button;
  23. @property (weak, nonatomic) IBOutlet QMUITextView *content_textview;
  24. @end
  25. NS_ASSUME_NONNULL_END