SalesManSearchVC.h 551 B

1234567891011121314151617181920
  1. //
  2. // IBOSSIPAD
  3. //
  4. // Created by iHope on 14-8-14.
  5. // Copyright (c) 2014年 elongtian. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "BaseViewController.h"
  9. #import "SubmitOrderVC.h"
  10. #import "OrderDelegate.h"
  11. @interface SalesManSearchVC : BaseViewController{
  12. }
  13. @property(strong) NSMutableArray *searchArr;//搜索数组
  14. @property(strong) NSMutableArray *filterArr;//过滤数组
  15. @property(weak) id<OrderDelegate> salesmanDelegate;//委托
  16. @property(strong) UISearchBar *searchBar;//搜索栏
  17. @property BOOL subview;
  18. @end