OrderdetailsViewController.h 1.19 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//
//  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;


勾芒's avatar
勾芒 committed
20
/**
勾芒's avatar
勾芒 committed
21
 *  订单ID
勾芒's avatar
勾芒 committed
22 23
 */
@property (nonatomic,copy) NSString *orderCode;
勾芒's avatar
勾芒 committed
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38


/**
 *  是否显示附件信息
 */
@property (nonatomic,assign) BOOL isShowattachment;



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


勾芒's avatar
勾芒 committed
39 40 41 42 43 44 45 46 47 48
/**
 *  是否显示支付按钮
 */
@property (nonatomic,assign) BOOL isShowPayButton;

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

勾芒's avatar
勾芒 committed
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
/**
 *  是否显示撤销订单
 */
@property (nonatomic,assign) BOOL isDelectedButton;

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

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

勾芒's avatar
勾芒 committed
64 65 66 67
/**
 *  是否支持滑动返回
 */
@property (nonatomic,assign) BOOL isSliding;
勾芒's avatar
勾芒 committed
68 69 70 71




72
@end