1234567891011121314151617181920212223242526272829303132333435 |
- //
- // NYComplaintPageViewController.h
- // jiaPei
- //
- // Created by Ning.ge on 2023/6/30.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NYComplaintPageViewController : UIViewController
- @property (nonatomic ,strong) NSMutableArray *image_idArray;
- @property (nonatomic ,strong) NSMutableArray *assestArray;
- @property BOOL isSelectOriginalPhoto;
- @property (nonatomic ,strong) UICollectionView *collectionView;
- @property (nonatomic ,strong) NSMutableArray *photosArray;
- //手机号码
- @property (weak, nonatomic) IBOutlet UITextField *phone_textfield;
- //投诉
- @property (weak, nonatomic) IBOutlet UIButton *px_button;
- @property (nonatomic,strong) UIButton *currentType_button;
- //提交
- @property (weak, nonatomic) IBOutlet UIButton *submit_button;
- @property (weak, nonatomic) IBOutlet QMUITextView *content_textview;
- @end
- NS_ASSUME_NONNULL_END
|