| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //
- // DeliveryListCell.h
- // IBOSS
- //
- // Created by Dongke on 16/1/8.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:配送已回执列表单元格
- #import <UIKit/UIKit.h>
- #import "DeliveryListModel.h"
- #import "ReceiptedListFrame.h"
- @interface DeliveryListCell : UITableViewCell
- /**
- 回执单号
- */
- @property (strong,nonatomic) UILabel *receiptNo;
- @property (strong,nonatomic) UIButton *btnCancelReceipt;
- /**
- 安排单号
- */
- @property (strong,nonatomic) UILabel *arrangementNo;
- /**
- 配送单号
- */
- @property (strong,nonatomic) UILabel *deliveryNo;
- /**
- 客户名称
- */
- @property (strong,nonatomic) UILabel *customerName;
- @property (strong,nonatomic) UILabel *customerAddress;
- @property (strong,nonatomic) UILabel *customerTelephone;
- /**
- 回执日期
- */
- @property (strong,nonatomic) UILabel *receiptDate;
- /**
- 回执状态
- */
- @property (strong,nonatomic) UILabel *receiptStatus;
- @property (nonatomic,assign) NSInteger index;
- @property(nonatomic,weak)id<DialTelephoneDelegate> cancelDelegate;
- /**
- 配送已回执model
- */
- @property (strong,nonatomic) DeliveryListModel *deliveryListModel;
- /**
- 加载已回执列表ui
- @param frame <#frame description#>
- */
- - (void)setReceiptedListFrame:(ReceiptedListFrame *) frame;
- @end
|