OrderdetailsViewController.h 1.25 KB
Newer Older
曹云霄's avatar
曹云霄 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
//
//  OrderdetailsViewController.h
//  Lighting
//
//  Created by 曹云霄 on 16/5/4.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "BaseViewController.h"



@interface OrderdetailsViewController : BaseViewController




/**
 *  订单详情tableview
 */
@property (weak, nonatomic) IBOutlet UITableView *orderDetailsTableview;

/**
 *  订单ID
 */
@property (nonatomic,copy) NSString *orderCode;

/**
 *  区头显示title
 */
@property (nonatomic,strong) NSMutableArray *sectionTitle;

/**
 *  是否显示支付按钮
 */
@property (nonatomic,assign) BOOL isShowPayButton;

/**
39
 *  是否显示分享按钮
曹云霄's avatar
曹云霄 committed
40
 */
41
@property (nonatomic,assign) BOOL isShowShareButton;
曹云霄's avatar
曹云霄 committed
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76

/**
 *  是否显示headerView
 */
@property (nonatomic,assign) BOOL isShowHeaderView;

/**
 *  撤销按钮、支付按钮完成回调
 */
@property (nonatomic,copy) void(^DelecteAndPayButtonBlock)(NSInteger cellindex,NSString *orderState);

/**
 *  cell下标
 */
@property (nonatomic,assign) NSInteger cellindex;

/**
 *  是否支持滑动返回
 */
@property (nonatomic,assign) BOOL isSliding;

/**
 *  是否开启交互
 */
@property (nonatomic,assign) BOOL isUserInteractionEnabled;

/*
 用户ID
 */
@property (nonatomic,copy) NSString *consumerID;




@end