OrderdetailsViewController.h 1.26 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
//
//  OrderdetailsViewController.h
//  Lighting
//
//  Created by 曹云霄 on 16/5/4.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "BaseViewController.h"

11 12


13 14
@interface OrderdetailsViewController : BaseViewController

15 16 17



18 19 20 21 22
/**
 *  订单详情tableview
 */
@property (weak, nonatomic) IBOutlet UITableView *orderDetailsTableview;

勾芒's avatar
勾芒 committed
23
/**
勾芒's avatar
勾芒 committed
24
 *  订单ID
勾芒's avatar
勾芒 committed
25 26
 */
@property (nonatomic,copy) NSString *orderCode;
勾芒's avatar
勾芒 committed
27 28 29 30

/**
 *  区头显示title
 */
31
@property (nonatomic,strong) NSMutableArray *sectionTitle;
勾芒's avatar
勾芒 committed
32

勾芒's avatar
勾芒 committed
33 34 35 36 37 38 39 40 41 42
/**
 *  是否显示支付按钮
 */
@property (nonatomic,assign) BOOL isShowPayButton;

/**
 *  是否显示预览、打印按钮
 */
@property (nonatomic,assign) BOOL isShowPrintButton;

勾芒's avatar
勾芒 committed
43
/**
44
 *  是否显示headerView
勾芒's avatar
勾芒 committed
45
 */
46
@property (nonatomic,assign) BOOL isShowHeaderView;
勾芒's avatar
勾芒 committed
47 48 49 50 51 52 53 54 55 56 57

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

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

勾芒's avatar
勾芒 committed
58 59 60 61
/**
 *  是否支持滑动返回
 */
@property (nonatomic,assign) BOOL isSliding;
勾芒's avatar
勾芒 committed
62

63 64 65 66 67
/**
 *  是否开启交互
 */
@property (nonatomic,assign) BOOL isUserInteractionEnabled;

68
/*
69 70
 用户ID
 */
71
@property (nonatomic,copy) NSString *consumerID;
72

73

勾芒's avatar
勾芒 committed
74 75


76
@end