Commit 1b73a0c3cbd076bd2ccda48754c23c9a079e75f4
0 parents
0.0.3
Showing
100 changed files
with
3752 additions
and
0 deletions
Too many changes to show.
To preserve performance only 100 of 208 files are displayed.
DSRepastModuleF.podspec
0 → 100644
| 1 | +++ a/DSRepastModuleF.podspec | |
| 1 | +Pod::Spec.new do |s| | |
| 2 | + | |
| 3 | + s.name = "DSRepastModuleF" | |
| 4 | + s.version = "0.0.3" | |
| 5 | + s.summary = "DSRepastModuleF" | |
| 6 | + s.homepage = "http://bj.gitlab.cnlive.com/DSIOSTeam" | |
| 7 | + s.authors = { "DSIOSTeam" => "694092596@qq.com" } | |
| 8 | + s.license = "MIT" | |
| 9 | + s.source = { :git => 'http://bj.gitlab.cnlive.com/DSIOSTeam/DSRepastModuleF.git', :tag => s.version.to_s } | |
| 10 | + s.ios.deployment_target = '9.0' | |
| 11 | + s.vendored_frameworks = "DSRepastModuleF/Frameworks/DSRepastModule.framework" | |
| 12 | + s.frameworks = 'Foundation', 'UIKit' | |
| 13 | + s.xcconfig = { | |
| 14 | + 'ENABLE_BITCODE' => 'NO' | |
| 15 | + } | |
| 16 | + s.pod_target_xcconfig = { | |
| 17 | + 'VALID_ARCHS' => 'arm64' | |
| 18 | + } | |
| 19 | + | |
| 20 | + s.dependency 'MGJRouter', '~> 0.10.0' | |
| 21 | + | |
| 22 | + s.dependency 'DSBaseModuleF', '>=0.0.0', '<1.0.0' | |
| 23 | + s.dependency 'DSToolsModuleF', '>=0.0.0', '<1.0.0' | |
| 24 | + s.dependency 'DSCommonModuleF', '>=0.0.0', '<1.0.0' | |
| 25 | + s.dependency 'DSAddressModuleF', '>=0.0.0', '<1.0.0' | |
| 26 | + s.dependency 'DSPayModuleF', '>=0.0.0', '<1.0.0' | |
| 27 | + s.dependency 'DSWebViewModuleF', '>=0.0.0', '<1.0.0' | |
| 28 | + s.dependency 'DSARModuleF', '>=0.0.0', '<1.0.0' | |
| 29 | + | |
| 30 | +end | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/DSRepastModule
0 → 100755
No preview for this file type
DSRepastModuleF/Frameworks/DSRepastModule.framework/DSRepastModule.bundle/Assets.car
0 → 100644
No preview for this file type
DSRepastModuleF/Frameworks/DSRepastModule.framework/DSRepastModule.bundle/Info.plist
0 → 100644
No preview for this file type
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastResultAlertView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastResultAlertView.h | |
| 1 | +// | |
| 2 | +// DSARRepastResultAlertView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/3/11. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <UIKit/UIKit.h> | |
| 9 | +#import "DSARRepastResultModel.h" | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSARRepastResultAlertView : UIView | |
| 14 | + | |
| 15 | +-(instancetype)initWithModel:(DSARRepastResultModel*)model; | |
| 16 | + | |
| 17 | +@property (nonatomic,copy) void (^clickCloseCallBack)(void);//关闭 | |
| 18 | +@property (nonatomic,copy) void (^clickSkipDarenHomeCallBack)(void);//跳转达人主页 | |
| 19 | +@property (nonatomic,copy) void (^clickSkipStoreCallBack)(void);//跳转门店 | |
| 20 | +@property (nonatomic,copy) void (^clickMyOrderListCallBack)(void);//跳转我的订单列表 | |
| 21 | +@property (nonatomic,copy) void (^clickValidateOrderCallBack)(NSString * orderId);//核销订单 | |
| 22 | + | |
| 23 | +@end | |
| 24 | + | |
| 25 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastResultContentView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastResultContentView.h | |
| 1 | +// | |
| 2 | +// DSARRepastResultContentView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/3/11. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <UIKit/UIKit.h> | |
| 9 | +#import "DSARRepastResultModel.h" | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSARRepastResultContentView : UIView | |
| 14 | + | |
| 15 | +-(instancetype)initWithFrame:(CGRect)frame model:(DSARRepastResultModel*)model; | |
| 16 | + | |
| 17 | +/** | |
| 18 | + 选中的那个 | |
| 19 | + */ | |
| 20 | +@property (nonatomic,strong,readonly) DSARRepastResultListModel * selectModel; | |
| 21 | + | |
| 22 | +@end | |
| 23 | + | |
| 24 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastResultMOrderTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastResultMOrderTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSARRepastResultMOrderTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/3/12. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <DSBaseModule/DSBaseModule.h> | |
| 9 | +#import "DSARRepastResultModel.h" | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSARRepastResultMOrderTableViewCell : DSTableViewCell | |
| 14 | + | |
| 15 | +@property (nonatomic,strong,readonly) DSARRepastResultListModel * model; | |
| 16 | +@property (nonatomic,assign,readonly) BOOL isSelect; | |
| 17 | + | |
| 18 | +-(void)setModel:(DSARRepastResultListModel * _Nonnull)model isSelect:(BOOL)isSelect; | |
| 19 | + | |
| 20 | +@end | |
| 21 | + | |
| 22 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastResultModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastResultModel.h | |
| 1 | +// | |
| 2 | +// DSARRepastResultModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/3/11. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <Foundation/Foundation.h> | |
| 9 | + | |
| 10 | +NS_ASSUME_NONNULL_BEGIN | |
| 11 | + | |
| 12 | +#pragma mark - 店铺信息 | |
| 13 | + | |
| 14 | +@interface DSARRepastResultStoreModel : NSObject | |
| 15 | + | |
| 16 | +/** | |
| 17 | + 店铺id | |
| 18 | + */ | |
| 19 | +@property (nonatomic,copy) NSString * id; | |
| 20 | +/** | |
| 21 | + 名称 | |
| 22 | + */ | |
| 23 | +@property (nonatomic,copy) NSString * title; | |
| 24 | +/** | |
| 25 | + logo | |
| 26 | + */ | |
| 27 | +@property (nonatomic,copy) NSString * simg; | |
| 28 | +/** | |
| 29 | + 1 外卖 0到店 | |
| 30 | + */ | |
| 31 | +@property (nonatomic,copy) NSString * model; | |
| 32 | +/** | |
| 33 | + 达人id daren_10522083 | |
| 34 | + */ | |
| 35 | +@property (nonatomic,copy) NSString * uid; | |
| 36 | +/** | |
| 37 | + 弹窗标题 | |
| 38 | + */ | |
| 39 | +@property (nonatomic,copy) NSString * alert_title; | |
| 40 | +/** | |
| 41 | + 弹窗副标题 | |
| 42 | + */ | |
| 43 | +@property (nonatomic,copy) NSString * alert_info; | |
| 44 | + | |
| 45 | +@end | |
| 46 | + | |
| 47 | +#pragma mark - 商品信息 | |
| 48 | + | |
| 49 | +@interface DSARRepastResultListDetailsModel : NSObject | |
| 50 | + | |
| 51 | +/** | |
| 52 | + 清单id | |
| 53 | + */ | |
| 54 | +@property (nonatomic,copy) NSString * id; | |
| 55 | +/** | |
| 56 | + 餐品id | |
| 57 | + */ | |
| 58 | +@property (nonatomic,copy) NSString * foods_id; | |
| 59 | +/** | |
| 60 | + 标题 | |
| 61 | + */ | |
| 62 | +@property (nonatomic,copy) NSString * title; | |
| 63 | +/** | |
| 64 | + 副标题 | |
| 65 | + */ | |
| 66 | +@property (nonatomic,copy) NSString * ads; | |
| 67 | +/** | |
| 68 | + 单价 | |
| 69 | + */ | |
| 70 | +@property (nonatomic,copy) NSString * price; | |
| 71 | +/** | |
| 72 | + 图片 | |
| 73 | + */ | |
| 74 | +@property (nonatomic,copy) NSString * simg; | |
| 75 | +/** | |
| 76 | + 数量 | |
| 77 | + */ | |
| 78 | +@property (nonatomic,copy) NSString * num; | |
| 79 | +/** | |
| 80 | + 订单id | |
| 81 | + */ | |
| 82 | +@property (nonatomic,copy) NSString * orderid; | |
| 83 | + | |
| 84 | +@end | |
| 85 | + | |
| 86 | +@interface DSARRepastResultListModel : NSObject | |
| 87 | + | |
| 88 | +/** | |
| 89 | + 订单id | |
| 90 | + */ | |
| 91 | +@property (nonatomic,copy) NSString * id; | |
| 92 | +/** | |
| 93 | + 支付时间 | |
| 94 | + */ | |
| 95 | +@property (nonatomic,copy) NSString * sendtime; | |
| 96 | +/** | |
| 97 | + 订单号 | |
| 98 | + */ | |
| 99 | +@property (nonatomic,copy) NSString * orderid; | |
| 100 | +/** | |
| 101 | + 开始时间 | |
| 102 | + */ | |
| 103 | +@property (nonatomic,copy) NSString * starttime; | |
| 104 | +/** | |
| 105 | + 结束时间 | |
| 106 | + */ | |
| 107 | +@property (nonatomic,copy) NSString * stoptime; | |
| 108 | +/** | |
| 109 | + 订单金额 | |
| 110 | + */ | |
| 111 | +@property (nonatomic,copy) NSString * price; | |
| 112 | +/** | |
| 113 | + 商品信息 | |
| 114 | + */ | |
| 115 | +@property (nonatomic,copy) NSArray<DSARRepastResultListDetailsModel*> * detail; | |
| 116 | + | |
| 117 | +@end | |
| 118 | + | |
| 119 | +#pragma mark - 第一级 | |
| 120 | + | |
| 121 | +@interface DSARRepastResultModel : NSObject | |
| 122 | + | |
| 123 | +/** | |
| 124 | + 商品信息 | |
| 125 | + */ | |
| 126 | +@property (nonatomic,copy) NSArray<DSARRepastResultListModel*> * list; | |
| 127 | +/** | |
| 128 | + 店铺信息 | |
| 129 | + */ | |
| 130 | +@property (nonatomic,strong) DSARRepastResultStoreModel * store; | |
| 131 | + | |
| 132 | +@end | |
| 133 | + | |
| 134 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastResultViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastResultViewController.h | |
| 1 | +// | |
| 2 | +// DSARRepastResultViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/3/11. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <DSBaseModule/DSBaseModule.h> | |
| 9 | + | |
| 10 | +NS_ASSUME_NONNULL_BEGIN | |
| 11 | + | |
| 12 | +@interface DSARRepastResultViewController : DSBaseViewController | |
| 13 | + | |
| 14 | +@property (nonatomic,copy) NSString * storeId; | |
| 15 | + | |
| 16 | +#pragma mark - 回调 | |
| 17 | + | |
| 18 | +/** | |
| 19 | + 关闭结果界面回调 | |
| 20 | + */ | |
| 21 | +@property (nonatomic,copy) void (^closeResultVCCallBack)(void); | |
| 22 | + | |
| 23 | +@end | |
| 24 | + | |
| 25 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastStoreIntroView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastStoreIntroView.h | |
| 1 | +// | |
| 2 | +// DSARRepastStoreIntroView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/22. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import "DSRSInfoModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSARRepastStoreIntroView : UIView | |
| 15 | + | |
| 16 | +@property (nonatomic,strong) DSRSInfoModel * model; | |
| 17 | + | |
| 18 | +#pragma mark - 回调 | |
| 19 | + | |
| 20 | +@property (nonatomic,copy) void (^clickGogoStoreCallBack)(void);//去店铺 | |
| 21 | + | |
| 22 | +@end | |
| 23 | + | |
| 24 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastStoreNearbyCateView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastStoreNearbyCateView.h | |
| 1 | +// | |
| 2 | +// DSARRepastStoreNearbyCateView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/23. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSARRepastStoreNearbyCateView : UIView | |
| 14 | + | |
| 15 | +/** | |
| 16 | + 点击附近美食回调 | |
| 17 | + */ | |
| 18 | +@property (nonatomic,copy) void (^clickNearbyCateCallBack)(void); | |
| 19 | + | |
| 20 | +@end | |
| 21 | + | |
| 22 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastStoreRedPacketView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastStoreRedPacketView.h | |
| 1 | +// | |
| 2 | +// DSARRepastStoreRedPacketView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/23. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import "DSRSInfoModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSARRepastStoreRedPacketView : UIView | |
| 15 | + | |
| 16 | +@property (nonatomic,assign) BOOL isDisplayCoupon;//是否显示了优惠券 (NO不显示,YES开始做显示动画) | |
| 17 | +@property (nonatomic,strong) DSRSInfoModel * model; | |
| 18 | + | |
| 19 | +#pragma mark - 回调 | |
| 20 | + | |
| 21 | +@property (nonatomic,copy) void (^clickGogoStoreCallBack)(void);//去店铺 | |
| 22 | +@property (nonatomic,copy) void (^clickGetRedPacketCallBack)(DSRSInfoRedPacketModel * model);//获取红包 | |
| 23 | + | |
| 24 | +@end | |
| 25 | + | |
| 26 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastStoreViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSARRepastStoreViewController.h | |
| 1 | +// | |
| 2 | +// DSARRepastStoreViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/22. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSARRepastStoreViewController : DSBaseViewController | |
| 14 | + | |
| 15 | +/** | |
| 16 | + 门店id | |
| 17 | + */ | |
| 18 | +@property (nonatomic,copy) NSString * storeId; | |
| 19 | + | |
| 20 | +#pragma mark - 回调 | |
| 21 | + | |
| 22 | +/** | |
| 23 | + 关闭结果界面回调 | |
| 24 | + */ | |
| 25 | +@property (nonatomic,copy) void (^closeResultVCCallBack)(void); | |
| 26 | + | |
| 27 | +@end | |
| 28 | + | |
| 29 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRComplaintCollectionReusableFooterView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRComplaintCollectionReusableFooterView.h | |
| 1 | +// | |
| 2 | +// DSRComplaintCollectionReusableFooterView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/2/18. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <UIKit/UIKit.h> | |
| 9 | + | |
| 10 | +NS_ASSUME_NONNULL_BEGIN | |
| 11 | + | |
| 12 | +@interface DSRComplaintCollectionReusableFooterView : UICollectionReusableView | |
| 13 | + | |
| 14 | +@property (nonatomic,strong) DSTextView * descTextView; | |
| 15 | + | |
| 16 | +@end | |
| 17 | + | |
| 18 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRComplaintCollectionReusableHeaderView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRComplaintCollectionReusableHeaderView.h | |
| 1 | +// | |
| 2 | +// DSRComplaintCollectionReusableHeaderView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/2/18. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <UIKit/UIKit.h> | |
| 9 | + | |
| 10 | +NS_ASSUME_NONNULL_BEGIN | |
| 11 | + | |
| 12 | +@interface DSRComplaintCollectionReusableHeaderView : UICollectionReusableView | |
| 13 | + | |
| 14 | +@end | |
| 15 | + | |
| 16 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRComplaintCollectionViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRComplaintCollectionViewCell.h | |
| 1 | +// | |
| 2 | +// DSRComplaintCollectionViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/2/18. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <UIKit/UIKit.h> | |
| 9 | +#import "DSRComplaintViewController.h" | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRComplaintCollectionViewCell : UICollectionViewCell | |
| 14 | + | |
| 15 | +@property (nonatomic,copy,readonly) NSString * title; | |
| 16 | +@property (nonatomic,assign,readonly) BOOL isSelect; | |
| 17 | + | |
| 18 | +-(void)setTitle:(NSString*)title isSelect:(BOOL)isSelect; | |
| 19 | + | |
| 20 | +@end | |
| 21 | + | |
| 22 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRComplaintCollectionViewFlowLayout.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRComplaintCollectionViewFlowLayout.h | |
| 1 | +// | |
| 2 | +// DSRComplaintCollectionViewFlowLayout.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/2/18. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <UIKit/UIKit.h> | |
| 9 | + | |
| 10 | +NS_ASSUME_NONNULL_BEGIN | |
| 11 | + | |
| 12 | +@interface DSRComplaintCollectionViewFlowLayout : UICollectionViewFlowLayout | |
| 13 | + | |
| 14 | +@end | |
| 15 | + | |
| 16 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRComplaintViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRComplaintViewController.h | |
| 1 | +// | |
| 2 | +// DSRComplaintViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/2/16. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <DSBaseModule/DSBaseModule.h> | |
| 9 | + | |
| 10 | +NS_ASSUME_NONNULL_BEGIN | |
| 11 | + | |
| 12 | +@interface DSRComplaintViewController : DSBaseViewController | |
| 13 | + | |
| 14 | +/** | |
| 15 | + 订单Id | |
| 16 | + */ | |
| 17 | +@property (nonatomic,copy) NSString * orderId; | |
| 18 | + | |
| 19 | +@end | |
| 20 | + | |
| 21 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderCouponContentModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderCouponContentModel.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderCouponContentModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/20. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRConfirmOrderCouponContentModel : NSObject | |
| 14 | + | |
| 15 | +/** | |
| 16 | + 统一跳转规则 | |
| 17 | + */ | |
| 18 | +@property (nonatomic,copy) NSString * type; | |
| 19 | +/** | |
| 20 | + 统一跳转规则 | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) NSString * to; | |
| 23 | +/** | |
| 24 | + 统一跳转规则 | |
| 25 | + */ | |
| 26 | +@property (nonatomic,copy) NSString * shop_type; | |
| 27 | + | |
| 28 | +@end | |
| 29 | + | |
| 30 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderGradientView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderGradientView.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderGradientView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/17. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRConfirmOrderGradientView : UIView | |
| 14 | + | |
| 15 | +@end | |
| 16 | + | |
| 17 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderListModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderListModel.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderListModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/19. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRConfirmOrderListModel : NSObject | |
| 14 | + | |
| 15 | +/** | |
| 16 | + | |
| 17 | + */ | |
| 18 | +@property (nonatomic,copy) NSString * id; | |
| 19 | +/** | |
| 20 | + 店铺id | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) NSString * shop_id; | |
| 23 | +/** | |
| 24 | + 商品名称 | |
| 25 | + */ | |
| 26 | +@property (nonatomic,copy) NSString * title; | |
| 27 | +/** | |
| 28 | + 简介 | |
| 29 | + */ | |
| 30 | +@property (nonatomic,copy) NSString * ads; | |
| 31 | +/** | |
| 32 | + 餐品id | |
| 33 | + */ | |
| 34 | +@property (nonatomic,copy) NSString * foods_id; | |
| 35 | +/** | |
| 36 | + 价格 | |
| 37 | + */ | |
| 38 | +@property (nonatomic,copy) NSString * price; | |
| 39 | +/** | |
| 40 | + 剩余数量 | |
| 41 | + */ | |
| 42 | +@property (nonatomic,copy) NSString * num; | |
| 43 | +/** | |
| 44 | + 图片 | |
| 45 | + */ | |
| 46 | +@property (nonatomic,copy) NSString * simg; | |
| 47 | +/** | |
| 48 | + 选择数量 | |
| 49 | + */ | |
| 50 | +@property (nonatomic,copy) NSString * count; | |
| 51 | + | |
| 52 | +@end | |
| 53 | + | |
| 54 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderModel.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/19. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | +#import "DSRConfirmOrderListModel.h" | |
| 11 | +#import "DSRConfirmOrderShopModel.h" | |
| 12 | +#import "DSRConfirmOrderSelectTimeModel.h" | |
| 13 | +#import "DSRConfirmOrderCouponContentModel.h" | |
| 14 | +#import "DSRConfirmOrderRedPacketModel.h" | |
| 15 | + | |
| 16 | +NS_ASSUME_NONNULL_BEGIN | |
| 17 | + | |
| 18 | +@interface DSRConfirmOrderModel : NSObject | |
| 19 | + | |
| 20 | +/** | |
| 21 | + 商品列表 | |
| 22 | + */ | |
| 23 | +@property (nonatomic,copy) NSArray<DSRConfirmOrderListModel*> * list; | |
| 24 | +/** | |
| 25 | + 餐具份数 | |
| 26 | + */ | |
| 27 | +@property (nonatomic,copy) NSArray<NSString*> * foods_tableware; | |
| 28 | +/** | |
| 29 | + 备注数组 | |
| 30 | + */ | |
| 31 | +@property (nonatomic,copy) NSArray<NSString*> * foods_order_content; | |
| 32 | +/** | |
| 33 | + 不在配送范围内 (只要传入地址id 并且 地址合法后端才会判断) | |
| 34 | + */ | |
| 35 | +@property (nonatomic,copy) NSString * is_express; | |
| 36 | +/** | |
| 37 | + 总数量 | |
| 38 | + */ | |
| 39 | +@property (nonatomic,copy) NSString * count; | |
| 40 | +/** | |
| 41 | + 商品总价格 | |
| 42 | + */ | |
| 43 | +@property (nonatomic,copy) NSString * prices; | |
| 44 | +/** | |
| 45 | + 餐盒费用 | |
| 46 | + */ | |
| 47 | +@property (nonatomic,copy) NSString * tableware_price; | |
| 48 | +/** | |
| 49 | + 快递费用 | |
| 50 | + */ | |
| 51 | +@property (nonatomic,copy) NSString * express_price; | |
| 52 | +/** | |
| 53 | + 默认手机号 | |
| 54 | + */ | |
| 55 | +@property (nonatomic,copy) NSString * user_phone; | |
| 56 | +/** | |
| 57 | + 减免优惠金额 | |
| 58 | + */ | |
| 59 | +@property (nonatomic,copy) NSString * coupon; | |
| 60 | +/** | |
| 61 | + 红包优惠金额 | |
| 62 | + */ | |
| 63 | +@property (nonatomic,copy) NSString * coupon_price; | |
| 64 | +/** | |
| 65 | + 总优惠 | |
| 66 | + */ | |
| 67 | +@property (nonatomic,copy) NSString * total_coupon; | |
| 68 | +/** | |
| 69 | + 优惠说明 | |
| 70 | + */ | |
| 71 | +@property (nonatomic,strong) DSRConfirmOrderCouponContentModel * foods_coupon_content; | |
| 72 | +/** | |
| 73 | + 支付金额 | |
| 74 | + */ | |
| 75 | +@property (nonatomic,copy) NSString * price; | |
| 76 | +/** | |
| 77 | + 大于0的话显示弹框 差多少钱起送 | |
| 78 | + */ | |
| 79 | +@property (nonatomic,copy) NSString * delivery_price; | |
| 80 | +/** | |
| 81 | + 店铺数据 | |
| 82 | + */ | |
| 83 | +@property (nonatomic,strong) DSRConfirmOrderShopModel * shop; | |
| 84 | +/** | |
| 85 | + 距离 (米) | |
| 86 | + */ | |
| 87 | +@property (nonatomic,assign) long distance; | |
| 88 | +/** | |
| 89 | + 可选择时间数组 | |
| 90 | + */ | |
| 91 | +@property (nonatomic,copy) NSArray<DSRConfirmOrderSelectTimeModel*> * select_time; | |
| 92 | +/** | |
| 93 | + 默认使用的红包 | |
| 94 | + */ | |
| 95 | +@property (nonatomic,strong) DSRConfirmOrderRedPacketModel * foods_red_packet; | |
| 96 | + | |
| 97 | +@end | |
| 98 | + | |
| 99 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRPlanBMessageView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRPlanBMessageView.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderRPlanBMessageView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/8/3. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import "DSRConfirmOrderModel.h" | |
| 11 | + | |
| 12 | +typedef NS_ENUM(NSUInteger, DSRConfirmOrderRPlanBMessageType) { | |
| 13 | + DSRConfirmOrderRPlanBMessageTypeWalk = 0, //步行 | |
| 14 | + DSRConfirmOrderRPlanBMessageTypeDrive //驾车 | |
| 15 | +}; | |
| 16 | + | |
| 17 | +NS_ASSUME_NONNULL_BEGIN | |
| 18 | + | |
| 19 | +@interface DSRConfirmOrderRPlanBMessageView : UIView | |
| 20 | + | |
| 21 | +#pragma mark - 赋值 | |
| 22 | + | |
| 23 | +/** | |
| 24 | + 确认订单数据 | |
| 25 | + */ | |
| 26 | +@property (nonatomic,strong) DSRConfirmOrderModel * confirmOrderModel; | |
| 27 | + | |
| 28 | +#pragma mark - 回调 | |
| 29 | + | |
| 30 | +/** | |
| 31 | + 格式 | |
| 32 | + */ | |
| 33 | +@property (nonatomic,assign) DSRConfirmOrderRPlanBMessageType type; | |
| 34 | +/** | |
| 35 | + 切换格式回调 | |
| 36 | + */ | |
| 37 | +@property (nonatomic,copy) void (^switchTypeCallBack)(DSRConfirmOrderRPlanBMessageType type); | |
| 38 | + | |
| 39 | +@end | |
| 40 | + | |
| 41 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRPlanStoreAnnotationView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRPlanStoreAnnotationView.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderRPlanStoreAnnotationView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/8/2. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <MapKit/MapKit.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRConfirmOrderRPlanStoreAnnotationView : MKAnnotationView | |
| 14 | + | |
| 15 | +@end | |
| 16 | + | |
| 17 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRPlanStorePointAnnotation.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRPlanStorePointAnnotation.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderRPlanStorePointAnnotation.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/8/2. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <MapKit/MapKit.h> | |
| 10 | +#import "DSRConfirmOrderShopModel.h" | |
| 11 | + | |
| 12 | +typedef NS_ENUM(NSUInteger, DSRConfirmOrderRPlanStoreType) { | |
| 13 | + DSRConfirmOrderRPlanStoreTypeCalc = 0, //计算中 | |
| 14 | + DSRConfirmOrderRPlanStoreTypeWalk, //步行 | |
| 15 | + DSRConfirmOrderRPlanStoreTypeDrive, //驾车 | |
| 16 | +}; | |
| 17 | + | |
| 18 | +NS_ASSUME_NONNULL_BEGIN | |
| 19 | + | |
| 20 | +@interface DSRConfirmOrderRPlanStorePointAnnotation : MKPointAnnotation | |
| 21 | + | |
| 22 | +/** | |
| 23 | + 路线规划格式 | |
| 24 | + */ | |
| 25 | +@property (nonatomic,assign) DSRConfirmOrderRPlanStoreType type; | |
| 26 | +/** | |
| 27 | + 从现在自己的位置到店铺需要的时间戳 | |
| 28 | + */ | |
| 29 | +@property (nonatomic,assign) NSTimeInterval needTimeInterval; | |
| 30 | +/** | |
| 31 | + 店铺数据 | |
| 32 | + */ | |
| 33 | +@property (nonatomic,strong) DSRConfirmOrderShopModel * shopModel; | |
| 34 | + | |
| 35 | +@end | |
| 36 | + | |
| 37 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRPlanUserPointAnnotation.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRPlanUserPointAnnotation.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderRPlanUserPointAnnotation.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/8/2. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <MapKit/MapKit.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRConfirmOrderRPlanUserPointAnnotation : MKPointAnnotation | |
| 14 | + | |
| 15 | +@end | |
| 16 | + | |
| 17 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRPlanViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRPlanViewController.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderRPlanViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/8/2. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import "DSRConfirmOrderModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRConfirmOrderRPlanViewController : DSBaseViewController | |
| 15 | + | |
| 16 | +/** | |
| 17 | + 确认订单数据 | |
| 18 | + */ | |
| 19 | +@property (nonatomic,strong) DSRConfirmOrderModel * confirmOrderModel; | |
| 20 | + | |
| 21 | +@end | |
| 22 | + | |
| 23 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRedPacketModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRedPacketModel.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderRedPacketModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/23. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRConfirmOrderRedPacketModel : NSObject | |
| 14 | + | |
| 15 | +/** | |
| 16 | + 红包id | |
| 17 | + */ | |
| 18 | +@property (nonatomic,copy) NSString * id; | |
| 19 | +/** | |
| 20 | + 满 | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) NSString * filled; | |
| 23 | +/** | |
| 24 | + 减 | |
| 25 | + */ | |
| 26 | +@property (nonatomic,copy) NSString * discount; | |
| 27 | +/** | |
| 28 | + | |
| 29 | + */ | |
| 30 | +@property (nonatomic,copy) NSString * type; | |
| 31 | +/** | |
| 32 | + | |
| 33 | + */ | |
| 34 | +@property (nonatomic,copy) NSString * pid; | |
| 35 | +/** | |
| 36 | + | |
| 37 | + */ | |
| 38 | +@property (nonatomic,copy) NSString * store_id; | |
| 39 | +/** | |
| 40 | + | |
| 41 | + */ | |
| 42 | +@property (nonatomic,copy) NSString * is_all_shop; | |
| 43 | + | |
| 44 | + | |
| 45 | +@end | |
| 46 | + | |
| 47 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRemarkCollectionReusableHeaderView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRemarkCollectionReusableHeaderView.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderRemarkCollectionReusableHeaderView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/17. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRConfirmOrderRemarkCollectionReusableHeaderView : UICollectionReusableView | |
| 14 | + | |
| 15 | +@property (nonatomic,copy) NSString * remark; | |
| 16 | + | |
| 17 | +#pragma mark - 回调 | |
| 18 | + | |
| 19 | +/** | |
| 20 | + 修改备注回调 | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) void (^editRemarkCallBack)(NSString * remark); | |
| 23 | + | |
| 24 | +@end | |
| 25 | + | |
| 26 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRemarkCollectionViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRemarkCollectionViewCell.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderRemarkCollectionViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/17. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRConfirmOrderRemarkCollectionViewCell : UICollectionViewCell | |
| 14 | + | |
| 15 | +#pragma mark - 赋值 | |
| 16 | + | |
| 17 | +@property (nonatomic,copy) NSString * content; | |
| 18 | + | |
| 19 | +@end | |
| 20 | + | |
| 21 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRemarkCollectionViewFlowLayout.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRemarkCollectionViewFlowLayout.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderRemarkCollectionViewFlowLayout.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/17. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRConfirmOrderRemarkCollectionViewFlowLayout : UICollectionViewFlowLayout | |
| 14 | + | |
| 15 | +@end | |
| 16 | + | |
| 17 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRemarkViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderRemarkViewController.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderRemarkViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/17. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import "DSRConfirmOrderModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRConfirmOrderRemarkViewController : DSBaseViewController | |
| 15 | + | |
| 16 | +#pragma mark - 赋值 | |
| 17 | + | |
| 18 | +@property (nonatomic,strong) DSRConfirmOrderModel * confirmModel; | |
| 19 | +@property (nonatomic,copy) NSString * remark; | |
| 20 | + | |
| 21 | +#pragma mark - 回调 | |
| 22 | + | |
| 23 | +/** | |
| 24 | + 修改备注回调 | |
| 25 | + */ | |
| 26 | +@property (nonatomic,copy) void (^editRemarkCallBack)(NSString * remark); | |
| 27 | + | |
| 28 | +@end | |
| 29 | + | |
| 30 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderSelectEatTimeView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderSelectEatTimeView.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderSelectEatTimeView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/20. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import "DSRConfirmOrderSelectTimeModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRConfirmOrderSelectEatTimeView : UIView | |
| 15 | + | |
| 16 | +#pragma mark - 赋值 | |
| 17 | + | |
| 18 | +/** | |
| 19 | + 时间数据 | |
| 20 | + */ | |
| 21 | +@property (nonatomic,copy,readonly) NSArray<DSRConfirmOrderSelectTimeModel*> * times; | |
| 22 | +/** | |
| 23 | + 选取的时间字符串 | |
| 24 | + */ | |
| 25 | +@property (nonatomic,copy,readonly) NSString * selectEatTimeStr; | |
| 26 | +/** | |
| 27 | + 选取的时间戳 | |
| 28 | + */ | |
| 29 | +@property (nonatomic,assign,readonly) NSTimeInterval selectTime; | |
| 30 | + | |
| 31 | +-(void)setTimes:(NSArray<DSRConfirmOrderSelectTimeModel*>*)times selectEatTimeStr:(NSString*)selectEatTimeStr selectTime:(NSTimeInterval)selectTime; | |
| 32 | + | |
| 33 | +#pragma mark - 回调 | |
| 34 | + | |
| 35 | +/** | |
| 36 | + 切换选取的时间戳回调 | |
| 37 | + */ | |
| 38 | +@property (nonatomic,copy) void (^switchTimeCallBack)(NSString * selectEatTimeStr, NSTimeInterval selectTime); | |
| 39 | + | |
| 40 | +@end | |
| 41 | + | |
| 42 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderSelectTNumberView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderSelectTNumberView.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderSelectTNumberView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/17. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRConfirmOrderSelectTNumberView : UIView | |
| 14 | + | |
| 15 | +#pragma mark - 赋值 | |
| 16 | + | |
| 17 | +/** | |
| 18 | + 餐具数量 | |
| 19 | + */ | |
| 20 | +@property (nonatomic,copy) NSString * selectTNumber; | |
| 21 | + | |
| 22 | +#pragma mark - 回调 | |
| 23 | + | |
| 24 | +/** | |
| 25 | + 切换餐具数量回调 | |
| 26 | + */ | |
| 27 | +@property (nonatomic,copy) void (^switchTNumberCallBack)(NSString * selectTNumber); | |
| 28 | + | |
| 29 | +@end | |
| 30 | + | |
| 31 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderSelectTimeModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderSelectTimeModel.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderSelectTimeModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/18. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRConfirmOrderSelectHMTimeModel : NSObject | |
| 14 | + | |
| 15 | +/** | |
| 16 | + 小时、分钟时间戳 | |
| 17 | + */ | |
| 18 | +@property (nonatomic,assign) NSTimeInterval time; | |
| 19 | + | |
| 20 | +/** | |
| 21 | + 小时、分钟标题 | |
| 22 | + */ | |
| 23 | +@property (nonatomic,copy) NSString * date; | |
| 24 | + | |
| 25 | +@end | |
| 26 | + | |
| 27 | +@interface DSRConfirmOrderSelectTimeModel : NSObject | |
| 28 | + | |
| 29 | +/** | |
| 30 | + 天标题 | |
| 31 | + */ | |
| 32 | +@property (nonatomic,copy) NSString * title; | |
| 33 | +/** | |
| 34 | + 小时、分钟数组 | |
| 35 | + */ | |
| 36 | +@property (nonatomic,copy) NSArray<DSRConfirmOrderSelectHMTimeModel*> * list; | |
| 37 | + | |
| 38 | +@end | |
| 39 | + | |
| 40 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderSelectTimeView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderSelectTimeView.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderSelectTimeView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/18. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import "DSRConfirmOrderSelectTimeModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRConfirmOrderSelectTimeView : UIView | |
| 15 | + | |
| 16 | +#pragma mark - 选取就餐时间初始化方法 (其余不用) | |
| 17 | + | |
| 18 | +/** | |
| 19 | + 选取就餐时间初始化方法 (其余不用) | |
| 20 | + */ | |
| 21 | +-(instancetype)initSelectEatTimeWithFrame:(CGRect)frame; | |
| 22 | + | |
| 23 | +#pragma mark - 赋值 | |
| 24 | + | |
| 25 | +/** | |
| 26 | + 时间数据 | |
| 27 | + */ | |
| 28 | +@property (nonatomic,copy,readonly) NSArray<DSRConfirmOrderSelectTimeModel*> * times; | |
| 29 | +/** | |
| 30 | + 选取的时间戳 | |
| 31 | + */ | |
| 32 | +@property (nonatomic,assign,readonly) NSTimeInterval selectTime; | |
| 33 | + | |
| 34 | +-(void)setTimes:(NSArray<DSRConfirmOrderSelectTimeModel*>*)times selectTime:(NSTimeInterval)selectTime; | |
| 35 | + | |
| 36 | +#pragma mark - 回调 | |
| 37 | + | |
| 38 | +/** | |
| 39 | + 切换选取的时间戳回调 | |
| 40 | + */ | |
| 41 | +@property (nonatomic,copy) void (^switchTimeCallBack)(NSString * selectTimeStr, NSTimeInterval selectTime); | |
| 42 | +/** | |
| 43 | + 点击返回回调 (选取就餐时间时有用) | |
| 44 | + */ | |
| 45 | +@property (nonatomic,copy) void (^clickBackCallBack)(void); | |
| 46 | +/** | |
| 47 | + 点击关闭回调 (选取就餐时间时有用) | |
| 48 | + */ | |
| 49 | +@property (nonatomic,copy) void (^clickCloseCallBack)(void); | |
| 50 | + | |
| 51 | +@end | |
| 52 | + | |
| 53 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderShopModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderShopModel.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderShopModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/19. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRConfirmOrderShopModel : NSObject | |
| 14 | + | |
| 15 | +/** | |
| 16 | + 店铺id | |
| 17 | + */ | |
| 18 | +@property (nonatomic,copy) NSString * id; | |
| 19 | +/** | |
| 20 | + 名称 | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) NSString * title; | |
| 23 | +/** | |
| 24 | + logo | |
| 25 | + */ | |
| 26 | +@property (nonatomic,copy) NSString * simg; | |
| 27 | +/** | |
| 28 | + 商家id | |
| 29 | + */ | |
| 30 | +@property (nonatomic,copy) NSString * shop_id; | |
| 31 | +/** | |
| 32 | + | |
| 33 | + */ | |
| 34 | +@property (nonatomic,copy) NSString * bg_img; | |
| 35 | +/** | |
| 36 | + | |
| 37 | + */ | |
| 38 | +@property (nonatomic,copy) NSString * state; | |
| 39 | +/** | |
| 40 | + | |
| 41 | + */ | |
| 42 | +@property (nonatomic,copy) NSString * starttime; | |
| 43 | +/** | |
| 44 | + | |
| 45 | + */ | |
| 46 | +@property (nonatomic,copy) NSString * stoptime; | |
| 47 | +/** | |
| 48 | + 经度 | |
| 49 | + */ | |
| 50 | +@property (nonatomic,assign) double longitude; | |
| 51 | +/** | |
| 52 | + 纬度 | |
| 53 | + */ | |
| 54 | +@property (nonatomic,assign) double latitude; | |
| 55 | +/** | |
| 56 | + 电话 | |
| 57 | + */ | |
| 58 | +@property (nonatomic,copy) NSString * phone; | |
| 59 | +/** | |
| 60 | + 地址 | |
| 61 | + */ | |
| 62 | +@property (nonatomic,copy) NSString * address; | |
| 63 | +/** | |
| 64 | + | |
| 65 | + */ | |
| 66 | +@property (nonatomic,copy) NSString * grade; | |
| 67 | +/** | |
| 68 | + | |
| 69 | + */ | |
| 70 | +@property (nonatomic,copy) NSString * notice; | |
| 71 | +/** | |
| 72 | + | |
| 73 | + */ | |
| 74 | +@property (nonatomic,copy) NSString * is_take_out; | |
| 75 | +/** | |
| 76 | + | |
| 77 | + */ | |
| 78 | +@property (nonatomic,copy) NSString * is_take_self; | |
| 79 | +/** | |
| 80 | + | |
| 81 | + */ | |
| 82 | +@property (nonatomic,copy) NSString * is_order_food; | |
| 83 | +/** | |
| 84 | + | |
| 85 | + */ | |
| 86 | +@property (nonatomic,copy) NSString * is_book_table; | |
| 87 | + | |
| 88 | +@end | |
| 89 | + | |
| 90 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderTableFooterView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderTableFooterView.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderTableFooterView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/17. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRConfirmOrderTableFooterView : UIView | |
| 14 | + | |
| 15 | +#pragma mark - 回调 | |
| 16 | + | |
| 17 | +/** | |
| 18 | + 点击选取餐具数量回调 | |
| 19 | + */ | |
| 20 | +@property (nonatomic,copy) void (^clickSelectTNumberCallBack)(void); | |
| 21 | +/** | |
| 22 | + 点击备注回调 | |
| 23 | + */ | |
| 24 | +@property (nonatomic,copy) void (^clickRemarkCallBack)(void); | |
| 25 | + | |
| 26 | +#pragma mark - 赋值 | |
| 27 | + | |
| 28 | +@property (nonatomic,copy,readonly) NSString * remark;//备注 | |
| 29 | +@property (nonatomic,copy,readonly) NSString * selectTNumber;//餐具数量 | |
| 30 | + | |
| 31 | +-(void)setRemark:(NSString*)remark selectTNumber:(NSString*)selectTNumber; | |
| 32 | + | |
| 33 | +@end | |
| 34 | + | |
| 35 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderTableHeaderView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderTableHeaderView.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderTableHeaderView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/17. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import "DSRConfirmOrderViewController.h" | |
| 11 | +#import "DSRConfirmOrderModel.h" | |
| 12 | +#import <DSAddressModule/DSAddressModel.h> | |
| 13 | + | |
| 14 | +NS_ASSUME_NONNULL_BEGIN | |
| 15 | + | |
| 16 | +@interface DSRConfirmOrderTableHeaderView : UIView | |
| 17 | + | |
| 18 | +#pragma mark - 回调 | |
| 19 | + | |
| 20 | +/** | |
| 21 | + 切换格式回调 | |
| 22 | + */ | |
| 23 | +@property (nonatomic,copy) void (^switchTypeCallBack)(DSRConfirmOrderType type); | |
| 24 | +/** | |
| 25 | + 选取到店时间戳回调 | |
| 26 | + */ | |
| 27 | +@property (nonatomic,copy) void (^selectGotoStoreTimeCallBack)(void); | |
| 28 | +/** | |
| 29 | + 编辑电话回调 | |
| 30 | + */ | |
| 31 | +@property (nonatomic,copy) void (^editPhoneCallBack)(NSString * phone); | |
| 32 | +/** | |
| 33 | + 选取就餐时间回调 | |
| 34 | + */ | |
| 35 | +@property (nonatomic,copy) void (^selectEatTimeCallBack)(void); | |
| 36 | +/** | |
| 37 | + 点击地址回调 | |
| 38 | + */ | |
| 39 | +@property (nonatomic,copy) void (^clickAddressCallBack)(void); | |
| 40 | +/** | |
| 41 | + 点击路线规划回调 | |
| 42 | + */ | |
| 43 | +@property (nonatomic,copy) void (^clickRoutePlanCallBack)(void); | |
| 44 | + | |
| 45 | +#pragma mark - 赋值 | |
| 46 | + | |
| 47 | +@property (nonatomic,assign,readonly) DSRConfirmOrderType type;//取货方式 | |
| 48 | +@property (nonatomic,assign,readonly) BOOL isCanSwitchType;//是否能切换取货方式 当type == 1 || type == 3有效 | |
| 49 | + | |
| 50 | +@property (nonatomic,strong,nullable,readonly) DSAddressModel * addressModel;//我的地址 | |
| 51 | + | |
| 52 | +@property (nonatomic,strong,nullable,readonly) DSRConfirmOrderModel * confirmModel;//确认订单信息 | |
| 53 | +@property (nonatomic,copy,nullable,readonly) NSString * phone;//自取或到店就餐预留的电话 | |
| 54 | +@property (nonatomic,assign,readonly) NSTimeInterval selectGotoStoreTime;//自取时间 | |
| 55 | + | |
| 56 | +@property (nonatomic,copy,readonly) NSString * selectEatTimeStr;//就餐时间字符串 | |
| 57 | + | |
| 58 | +/** | |
| 59 | + 赋值 | |
| 60 | + | |
| 61 | + @param type 取货方式 | |
| 62 | + @param isCanSwitchType 是否能切换取货方式 当type == 1 || type == 3有效 | |
| 63 | + @param addressModel 我的地址 | |
| 64 | + @param confirmModel 确认订单信息 | |
| 65 | + @param phone 自取的电话 | |
| 66 | + @param selectGotoStoreTime 自取时间 | |
| 67 | + @param selectEatTimeStr 就餐时间字符串 | |
| 68 | + */ | |
| 69 | +-(void)setType:(DSRConfirmOrderType)type isCanSwitchType:(BOOL)isCanSwitchType addressModel:(nullable DSAddressModel*)addressModel confirmModel:(nullable DSRConfirmOrderModel*)confirmModel phone:(NSString*)phone selectGotoStoreTime:(NSTimeInterval)selectGotoStoreTime selectEatTimeStr:(nullable NSString*)selectEatTimeStr; | |
| 70 | + | |
| 71 | +@end | |
| 72 | + | |
| 73 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderTableSectionFooterView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderTableSectionFooterView.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderTableSectionFooterView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/17. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import "DSRConfirmOrderViewController.h" | |
| 11 | +#import "DSRConfirmOrderModel.h" | |
| 12 | + | |
| 13 | +NS_ASSUME_NONNULL_BEGIN | |
| 14 | + | |
| 15 | +@interface DSRConfirmOrderTableSectionFooterView : UITableViewHeaderFooterView | |
| 16 | + | |
| 17 | +#pragma mark - 回调 | |
| 18 | + | |
| 19 | +/** | |
| 20 | + 点击优惠说明回调 | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) void (^clickCouponExplainCallBack)(void); | |
| 23 | + | |
| 24 | +#pragma mark - 赋值 | |
| 25 | + | |
| 26 | +@property (nonatomic,assign,readonly) DSRConfirmOrderType type;//取货方式 | |
| 27 | +@property (nonatomic,strong,readonly) DSRConfirmOrderModel * model; | |
| 28 | + | |
| 29 | +-(void)setModel:(DSRConfirmOrderModel*)model type:(DSRConfirmOrderType)type; | |
| 30 | + | |
| 31 | +@end | |
| 32 | + | |
| 33 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderTableSectionHeaderView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderTableSectionHeaderView.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderTableSectionHeaderView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/17. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import "DSRConfirmOrderModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRConfirmOrderTableSectionHeaderView : UITableViewHeaderFooterView | |
| 15 | + | |
| 16 | +@property (nonatomic,strong) DSRConfirmOrderModel * model; | |
| 17 | + | |
| 18 | +@end | |
| 19 | + | |
| 20 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/17. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import "DSRConfirmOrderListModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRConfirmOrderTableViewCell : DSTableViewCell | |
| 15 | + | |
| 16 | +@property (nonatomic,strong) DSRConfirmOrderListModel * model; | |
| 17 | + | |
| 18 | +@end | |
| 19 | + | |
| 20 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRConfirmOrderViewController.h | |
| 1 | +// | |
| 2 | +// DSRConfirmOrderViewController.h | |
| 3 | +// guoguanjuyanglao | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2017/11/30. | |
| 6 | +// Copyright © 2017年 zhaolin. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | + | |
| 11 | +typedef NS_ENUM(NSUInteger, DSRConfirmOrderType) {//取货方式 | |
| 12 | + DSRConfirmOrderTypeTakeOut = 1, //外卖 | |
| 13 | + DSRConfirmOrderTypeGoToStoreEat, //到店就餐 | |
| 14 | + DSRConfirmOrderTypeTakeFromStore //到店自取 | |
| 15 | +}; | |
| 16 | + | |
| 17 | +@interface DSRConfirmOrderViewController : DSBaseViewController | |
| 18 | + | |
| 19 | +/** | |
| 20 | + 店铺id | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) NSString * storeId; | |
| 23 | +/** | |
| 24 | + 购买类型 1 外卖 2 到店就餐 3 到店自取 | |
| 25 | + */ | |
| 26 | +@property (nonatomic,assign) DSRConfirmOrderType type; | |
| 27 | +/** | |
| 28 | + 餐品id (不是购物车购买时传) | |
| 29 | + */ | |
| 30 | +@property (nonatomic,copy) NSString * foodsId; | |
| 31 | +/** | |
| 32 | + 购买数量 (不是购物车购买时传) | |
| 33 | + */ | |
| 34 | +@property (nonatomic,copy) NSString * num; | |
| 35 | + | |
| 36 | +#pragma mark - 回调 | |
| 37 | + | |
| 38 | +/** | |
| 39 | + 下订单回调 | |
| 40 | + */ | |
| 41 | +@property (nonatomic,copy) void (^placeOrderCallBack)(void); | |
| 42 | + | |
| 43 | +@end | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRGoodsDetailsModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRGoodsDetailsModel.h | |
| 1 | +// | |
| 2 | +// DSRGoodsDetailsModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/3/12. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <Foundation/Foundation.h> | |
| 9 | + | |
| 10 | +NS_ASSUME_NONNULL_BEGIN | |
| 11 | + | |
| 12 | +@interface DSRGoodsDetailsModel : NSObject | |
| 13 | + | |
| 14 | +/** | |
| 15 | + id | |
| 16 | + */ | |
| 17 | +@property (nonatomic,copy) NSString * id; | |
| 18 | +/** | |
| 19 | + 标题 | |
| 20 | + */ | |
| 21 | +@property (nonatomic,copy) NSString * title; | |
| 22 | +/** | |
| 23 | + 副标题 | |
| 24 | + */ | |
| 25 | +@property (nonatomic,copy) NSString * ads; | |
| 26 | +/** | |
| 27 | + 原价 | |
| 28 | + */ | |
| 29 | +@property (nonatomic,copy) NSString * prices; | |
| 30 | +/** | |
| 31 | + 销售价格 | |
| 32 | + */ | |
| 33 | +@property (nonatomic,copy) NSString * price; | |
| 34 | +/** | |
| 35 | + | |
| 36 | + */ | |
| 37 | +@property (nonatomic,copy) NSString * foods_id; | |
| 38 | +/** | |
| 39 | + 图片 | |
| 40 | + */ | |
| 41 | +@property (nonatomic,copy) NSString * simg; | |
| 42 | +/** | |
| 43 | + 数量 | |
| 44 | + */ | |
| 45 | +@property (nonatomic,assign) NSUInteger num; | |
| 46 | +/** | |
| 47 | + | |
| 48 | + */ | |
| 49 | +@property (nonatomic,copy) NSString * pid; | |
| 50 | +/** | |
| 51 | + 店铺id | |
| 52 | + */ | |
| 53 | +@property (nonatomic,copy) NSString * shop_id; | |
| 54 | +/** | |
| 55 | + 是否支持外卖 1 支持 0 不支持 | |
| 56 | + */ | |
| 57 | +@property (nonatomic,assign) BOOL is_take_out; | |
| 58 | +/** | |
| 59 | + 是否支持自取 | |
| 60 | + */ | |
| 61 | +@property (nonatomic,assign) BOOL is_take_self; | |
| 62 | +/** | |
| 63 | + 是否支持到店就餐 | |
| 64 | + */ | |
| 65 | +@property (nonatomic,assign) BOOL is_order_food; | |
| 66 | +/** | |
| 67 | + 详情h5 | |
| 68 | + */ | |
| 69 | +@property (nonatomic,copy) NSString * html_url; | |
| 70 | +/** | |
| 71 | + 该商品在购物车中的数量 | |
| 72 | + */ | |
| 73 | +@property (nonatomic,assign) NSUInteger cart_count; | |
| 74 | + | |
| 75 | +@end | |
| 76 | + | |
| 77 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRGoodsDetailsTableHeaderView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRGoodsDetailsTableHeaderView.h | |
| 1 | +// | |
| 2 | +// DSRGoodsDetailsTableHeaderView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/3/12. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <UIKit/UIKit.h> | |
| 9 | +#import "DSRGoodsDetailsModel.h" | |
| 10 | +#import "DSRGoodsDetailsViewController.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRGoodsDetailsTableHeaderView : UIView | |
| 15 | + | |
| 16 | +#pragma mark - 赋值 | |
| 17 | + | |
| 18 | +@property (nonatomic,assign,readonly) DSRGoodsDetailsType type;//类型 | |
| 19 | +@property (nonatomic,strong,readonly) DSRGoodsDetailsModel * detailsModel; | |
| 20 | + | |
| 21 | +-(void)setDetailsModel:(DSRGoodsDetailsModel *)detailsModel type:(DSRGoodsDetailsType)type; | |
| 22 | + | |
| 23 | +#pragma mark - 回调 | |
| 24 | + | |
| 25 | +@property (nonatomic,copy) void (^addCallBack)(DSImageView * _Nullable addImageView);//添加回调 | |
| 26 | +@property (nonatomic,copy) void (^subtractCallBack)(void);//减回调 | |
| 27 | + | |
| 28 | +@end | |
| 29 | + | |
| 30 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRGoodsDetailsViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRGoodsDetailsViewController.h | |
| 1 | +// | |
| 2 | +// DSRGoodsDetailsViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/3/12. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <DSBaseModule/DSBaseModule.h> | |
| 9 | + | |
| 10 | +typedef NS_ENUM(NSUInteger, DSRGoodsDetailsType) { | |
| 11 | + DSRGoodsDetailsTypeTakeOut = 0, | |
| 12 | + DSRGoodsDetailsTypeGoToStoreEat, | |
| 13 | +}; | |
| 14 | + | |
| 15 | +NS_ASSUME_NONNULL_BEGIN | |
| 16 | + | |
| 17 | +@interface DSRGoodsDetailsViewController : DSBaseViewController | |
| 18 | + | |
| 19 | +/** | |
| 20 | + 商品id | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) NSString * goodsId; | |
| 23 | +/** | |
| 24 | + 店铺id | |
| 25 | + */ | |
| 26 | +@property (nonatomic,copy) NSString * storeId; | |
| 27 | +/** | |
| 28 | + 类型 | |
| 29 | + */ | |
| 30 | +@property (nonatomic,assign) DSRGoodsDetailsType type; | |
| 31 | + | |
| 32 | +@end | |
| 33 | + | |
| 34 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreAnnotationView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreAnnotationView.h | |
| 1 | +// | |
| 2 | +// DSRNearbyStoreAnnotationView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/24. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <MapKit/MapKit.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRNearbyStoreAnnotationView : MKAnnotationView | |
| 14 | + | |
| 15 | +@end | |
| 16 | + | |
| 17 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreListCouponModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreListCouponModel.h | |
| 1 | +// | |
| 2 | +// DSRNearbyStoreListCouponModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/8/1. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRNearbyStoreListCouponModel : NSObject | |
| 14 | + | |
| 15 | +/** | |
| 16 | + 满 | |
| 17 | + */ | |
| 18 | +@property (nonatomic,copy) NSString * fulfil; | |
| 19 | +/** | |
| 20 | + 减 | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) NSString * minus; | |
| 23 | +/** | |
| 24 | + id | |
| 25 | + */ | |
| 26 | +@property (nonatomic,copy) NSString * id; | |
| 27 | +/** | |
| 28 | + | |
| 29 | + */ | |
| 30 | +@property (nonatomic,copy) NSString * store_id; | |
| 31 | + | |
| 32 | +@end | |
| 33 | + | |
| 34 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreListModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreListModel.h | |
| 1 | +// | |
| 2 | +// DSRNearbyStoreListModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/8/1. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | +#import "DSRNearbyStoreListCouponModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRNearbyStoreListModel : NSObject | |
| 15 | + | |
| 16 | +/** | |
| 17 | + id | |
| 18 | + */ | |
| 19 | +@property (nonatomic,copy) NSString * id; | |
| 20 | +/** | |
| 21 | + 名称 | |
| 22 | + */ | |
| 23 | +@property (nonatomic,copy) NSString * title; | |
| 24 | +/** | |
| 25 | + logo | |
| 26 | + */ | |
| 27 | +@property (nonatomic,copy) NSString * simg; | |
| 28 | +/** | |
| 29 | + 电话 | |
| 30 | + */ | |
| 31 | +@property (nonatomic,copy) NSString * phone; | |
| 32 | +/** | |
| 33 | + 地址 | |
| 34 | + */ | |
| 35 | +@property (nonatomic,copy) NSString * address; | |
| 36 | +/** | |
| 37 | + 距离 米 | |
| 38 | + */ | |
| 39 | +@property (nonatomic,assign) NSUInteger juli; | |
| 40 | +/** | |
| 41 | + 1推荐 0非推荐 | |
| 42 | + */ | |
| 43 | +@property (nonatomic,copy) NSString * foods_is_recommend; | |
| 44 | +/** | |
| 45 | + 经度 | |
| 46 | + */ | |
| 47 | +@property (nonatomic,assign) double longitude; | |
| 48 | +/** | |
| 49 | + 纬度 | |
| 50 | + */ | |
| 51 | +@property (nonatomic,assign) double latitude; | |
| 52 | +/** | |
| 53 | + 评价 | |
| 54 | + */ | |
| 55 | +@property (nonatomic,copy) NSString * grade; | |
| 56 | +/** | |
| 57 | + 销量 | |
| 58 | + */ | |
| 59 | +@property (nonatomic,copy) NSString * sale_count; | |
| 60 | +/** | |
| 61 | + 推荐标题 | |
| 62 | + */ | |
| 63 | +@property (nonatomic,copy) NSString * foods_top_title; | |
| 64 | +/** | |
| 65 | + 优惠券列表 | |
| 66 | + */ | |
| 67 | +@property (nonatomic,copy) NSArray<DSRNearbyStoreListCouponModel*> * coupon; | |
| 68 | + | |
| 69 | +@end | |
| 70 | + | |
| 71 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreModel.h | |
| 1 | +// | |
| 2 | +// DSRNearbyStoreModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/24. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | +#import "DSRNearbyStoreListModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +#pragma mark - 第一级 | |
| 15 | + | |
| 16 | +@interface DSRNearbyStoreModel : NSObject | |
| 17 | + | |
| 18 | +/** | |
| 19 | + 推荐标题 | |
| 20 | + */ | |
| 21 | +@property (nonatomic,copy) NSString * foods_top_title; | |
| 22 | +/** | |
| 23 | + 数据列表 | |
| 24 | + */ | |
| 25 | +@property (nonatomic,copy) NSArray<DSRNearbyStoreListModel*> * list; | |
| 26 | + | |
| 27 | +@end | |
| 28 | + | |
| 29 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreParentViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreParentViewController.h | |
| 1 | +// | |
| 2 | +// DSRNearbyStoreParentViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/24. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import <CoreLocation/CoreLocation.h> | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRNearbyStoreParentViewController : DSTabBarViewController | |
| 15 | + | |
| 16 | +#pragma mark - 目标定位 | |
| 17 | + | |
| 18 | +/** | |
| 19 | + 附近美食目标定位 | |
| 20 | + */ | |
| 21 | +@property (nonatomic,strong) CLLocation * location; | |
| 22 | + | |
| 23 | +@end | |
| 24 | + | |
| 25 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStorePointAnnotation.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStorePointAnnotation.h | |
| 1 | +// | |
| 2 | +// DSRNearbyStorePointAnnotation.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/24. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <MapKit/MapKit.h> | |
| 10 | +#import "DSRNearbyStoreModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRNearbyStorePointAnnotation : MKPointAnnotation | |
| 15 | + | |
| 16 | +/** | |
| 17 | + 店铺数据 | |
| 18 | + */ | |
| 19 | +@property (nonatomic,strong) DSRNearbyStoreListModel * storeModel; | |
| 20 | +/** | |
| 21 | + 第几个 | |
| 22 | + */ | |
| 23 | +@property (nonatomic,assign) NSUInteger index; | |
| 24 | +/** | |
| 25 | + 是否显示店铺优惠券 | |
| 26 | + */ | |
| 27 | +@property (nonatomic,assign) BOOL isDisplayStoreCoupon; | |
| 28 | + | |
| 29 | +@end | |
| 30 | + | |
| 31 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreSearchView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreSearchView.h | |
| 1 | +// | |
| 2 | +// DSRNearbyStoreSearchView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/25. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import "DSRNearbyStoreViewController.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRNearbyStoreSearchView : UIView | |
| 15 | + | |
| 16 | +#pragma mark - 赋值 | |
| 17 | + | |
| 18 | +@property (nonatomic,assign) DSRNearbyStoreStyle style; | |
| 19 | + | |
| 20 | +#pragma mark - 回调 | |
| 21 | + | |
| 22 | +/** | |
| 23 | + 点击搜索回调 | |
| 24 | + */ | |
| 25 | +@property (nonatomic,copy) void (^clickSearchCallBack)(void); | |
| 26 | + | |
| 27 | +@end | |
| 28 | + | |
| 29 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreSelectDistanceView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreSelectDistanceView.h | |
| 1 | +// | |
| 2 | +// DSRNearbyStoreSelectDistanceView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/25. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import "DSRNearbyStoreViewController.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRNearbyStoreSelectDistanceView : UIView | |
| 15 | + | |
| 16 | +/** | |
| 17 | + 距离 单位米 最小1000 | |
| 18 | + */ | |
| 19 | +@property (nonatomic,assign) NSUInteger distance; | |
| 20 | + | |
| 21 | +#pragma mark - 赋值 | |
| 22 | + | |
| 23 | +@property (nonatomic,assign) DSRNearbyStoreStyle style; | |
| 24 | + | |
| 25 | +#pragma mark - 回调 | |
| 26 | + | |
| 27 | +/** | |
| 28 | + 滑动中回调 单位米 | |
| 29 | + */ | |
| 30 | +@property (nonatomic,copy) void (^sliderValueChangedCallBack)(NSUInteger distance); | |
| 31 | +/** | |
| 32 | + 滑动结束回调 单位米 | |
| 33 | + */ | |
| 34 | +@property (nonatomic,copy) void (^sliderEndDraggingCallBack)(NSUInteger distance); | |
| 35 | +/** | |
| 36 | + 点击更多美食回调 | |
| 37 | + */ | |
| 38 | +@property (nonatomic,copy) void (^clickMoreCateCallBack)(void); | |
| 39 | + | |
| 40 | +@end | |
| 41 | + | |
| 42 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreTableHeaderView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreTableHeaderView.h | |
| 1 | +// | |
| 2 | +// DSRNearbyStoreTableHeaderView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/25. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import <MapKit/MapKit.h> | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRNearbyStoreTableHeaderView : UIView | |
| 15 | + | |
| 16 | +//父控制器 | |
| 17 | +@property (nonatomic,weak) UIViewController * supperVC; | |
| 18 | +//地图 | |
| 19 | +@property (nonatomic,weak) MKMapView * mapView; | |
| 20 | + | |
| 21 | +@end | |
| 22 | + | |
| 23 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreTableView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreTableView.h | |
| 1 | +// | |
| 2 | +// DSRNearbyStoreTableView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/25. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRNearbyStoreTableView : DSTableView | |
| 14 | + | |
| 15 | +@end | |
| 16 | + | |
| 17 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSRNearbyStoreTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/25. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import "DSRNearbyStoreModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRNearbyStoreTableViewCell : DSTableViewCell | |
| 15 | + | |
| 16 | +#pragma mark - 赋值 | |
| 17 | + | |
| 18 | +@property (nonatomic,strong,readonly) DSRNearbyStoreListModel * model; | |
| 19 | +@property (nonatomic,assign,readonly) BOOL isLastRow; | |
| 20 | +@property (nonatomic,assign,readonly) BOOL isDisplayRecommendImage;//是否需要显示推荐图片 | |
| 21 | + | |
| 22 | +-(void)setModel:(DSRNearbyStoreListModel*)model isLastRow:(BOOL)isLastRow isDisplayRecommendImage:(BOOL)isDisplayRecommendImage; | |
| 23 | + | |
| 24 | +#pragma mark - 回调 | |
| 25 | + | |
| 26 | +/** | |
| 27 | + 点击推荐回调 | |
| 28 | + */ | |
| 29 | +@property (nonatomic,copy) void (^clickRecommendCallBack)(DSRNearbyStoreListModel * model); | |
| 30 | + | |
| 31 | +@end | |
| 32 | + | |
| 33 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRNearbyStoreViewController.h | |
| 1 | +// | |
| 2 | +// DSRNearbyStoreViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/24. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | + | |
| 11 | +typedef NS_ENUM(NSUInteger, DSRNearbyStoreStyle) { | |
| 12 | + DSRNearbyStoreStyleDefault = 0, //默认样式 | |
| 13 | + DSRNearbyStoreStyleDisplayHappinessTop, //电商中国顶部样式 | |
| 14 | + DSRNearbyStoreStyleDisplayOptimizationHP, //优选库上的样式 | |
| 15 | +}; | |
| 16 | + | |
| 17 | +NS_ASSUME_NONNULL_BEGIN | |
| 18 | + | |
| 19 | +@interface DSRNearbyStoreViewController : DSBaseViewController | |
| 20 | + | |
| 21 | +#pragma mark - init | |
| 22 | + | |
| 23 | +/** | |
| 24 | + 显示样式 | |
| 25 | + */ | |
| 26 | +@property (nonatomic,assign,readonly) DSRNearbyStoreStyle style; | |
| 27 | + | |
| 28 | +/** | |
| 29 | + 初始化方法 | |
| 30 | + | |
| 31 | + @param style 显示样式 | |
| 32 | + @return DSRNearbyStoreViewController | |
| 33 | + */ | |
| 34 | +-(instancetype)initWithStyle:(DSRNearbyStoreStyle)style; | |
| 35 | + | |
| 36 | +#pragma mark - 目标定位 | |
| 37 | + | |
| 38 | +/** | |
| 39 | + 定位 | |
| 40 | + */ | |
| 41 | +@property (nonatomic,strong) CLLocation * location; | |
| 42 | + | |
| 43 | +#pragma mark - 是否在屏幕中显示 | |
| 44 | + | |
| 45 | +/** | |
| 46 | + 是否显示 style == DSRNearbyStoreStyleDisplayHappinessTop 有效 | |
| 47 | + */ | |
| 48 | +@property (nonatomic,assign) BOOL isDisplay; | |
| 49 | + | |
| 50 | +@end | |
| 51 | + | |
| 52 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsDatasModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsDatasModel.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsDatasModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/30. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | +#import "DSROrderDetailsFifSLayout.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSROrderDetailsDatasModel : NSObject | |
| 15 | + | |
| 16 | +/** | |
| 17 | + 标题 | |
| 18 | + */ | |
| 19 | +@property (nonatomic,copy) NSString * title; | |
| 20 | +/** | |
| 21 | + 内容 | |
| 22 | + */ | |
| 23 | +@property (nonatomic,copy) NSString * content; | |
| 24 | + | |
| 25 | + | |
| 26 | +#pragma mark - 自己加的 | |
| 27 | + | |
| 28 | +/** | |
| 29 | + 样式五部分布局 | |
| 30 | + */ | |
| 31 | +@property (nonatomic,strong) DSROrderDetailsFifSLayout * fifSLayout; | |
| 32 | + | |
| 33 | +-(void)calcLayout; | |
| 34 | + | |
| 35 | +@end | |
| 36 | + | |
| 37 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsFifSLayout.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsFifSLayout.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsFifSLayout.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/30. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | +#import <UIKit/UIKit.h> | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSROrderDetailsFifSLayout : NSObject | |
| 15 | + | |
| 16 | +@property (nonatomic,assign) CGFloat titleHeight; | |
| 17 | +@property (nonatomic,assign) CGFloat cellHeight; | |
| 18 | + | |
| 19 | +@end | |
| 20 | + | |
| 21 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsFifSTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsFifSTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsFifSTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/30. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import "DSROrderDetailsDatasModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSROrderDetailsFifSTableViewCell : DSTableViewCell | |
| 15 | + | |
| 16 | +@property (nonatomic,strong,readonly) DSROrderDetailsDatasModel * model; | |
| 17 | +@property (nonatomic,assign,readonly) BOOL isLastRow; | |
| 18 | + | |
| 19 | +-(void)setModel:(DSROrderDetailsDatasModel*)model isLastRow:(BOOL)isLastRow; | |
| 20 | + | |
| 21 | +@end | |
| 22 | + | |
| 23 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsFirSLayout.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsFirSLayout.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsFirSLayout.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/30. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | +#import <UIKit/UIKit.h> | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSROrderDetailsFirSLayout : NSObject | |
| 15 | + | |
| 16 | +@property (nonatomic,copy) NSString * title; | |
| 17 | +@property (nonatomic,assign) CGFloat titleHeight; | |
| 18 | +@property (nonatomic,assign) CGFloat cellHeight; | |
| 19 | + | |
| 20 | +@end | |
| 21 | + | |
| 22 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsFirSTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsFirSTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsFirSTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/30. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import "DSROrderDetailsModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSROrderDetailsFirSTableViewCell : DSTableViewCell | |
| 15 | + | |
| 16 | +#pragma mark - 赋值 | |
| 17 | + | |
| 18 | +@property (nonatomic,strong) DSROrderDetailsModel * model; | |
| 19 | + | |
| 20 | +#pragma mark - 回调 | |
| 21 | + | |
| 22 | +@property (nonatomic,copy) void (^clickCancelCallBack)(DSROrderDetailsModel * model); | |
| 23 | +@property (nonatomic,copy) void (^clickPayCallBack)(DSROrderDetailsModel * model); | |
| 24 | +@property (nonatomic,copy) void (^clickComplaintCallBack)(DSROrderDetailsModel * model); | |
| 25 | +@property (nonatomic,copy) void (^clickCancelComplaintCallBack)(DSROrderDetailsModel * model); | |
| 26 | +@property (nonatomic,copy) void (^clickConfirmDeliveryCallBack)(DSROrderDetailsModel * model); | |
| 27 | + | |
| 28 | +@end | |
| 29 | + | |
| 30 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsFouSTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsFouSTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsFouSTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/30. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import "DSROrderDetailsGoodsModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSROrderDetailsFouSTableViewCell : DSTableViewCell | |
| 15 | + | |
| 16 | +@property (nonatomic,strong,readonly) DSROrderDetailsGoodsModel * model; | |
| 17 | +@property (nonatomic,assign,readonly) BOOL isFirstRow; | |
| 18 | +@property (nonatomic,assign,readonly) BOOL isLastRow; | |
| 19 | +@property (nonatomic,assign,readonly) BOOL isOnlyOneRow; | |
| 20 | + | |
| 21 | +-(void)setModel:(DSROrderDetailsGoodsModel*)model isFirstRow:(BOOL)isFirstRow isLastRow:(BOOL)isLastRow isOnlyOneRow:(BOOL)isOnlyOneRow; | |
| 22 | + | |
| 23 | +@end | |
| 24 | + | |
| 25 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsGoodsModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsGoodsModel.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsGoodsModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/29. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSROrderDetailsGoodsModel : NSObject | |
| 14 | + | |
| 15 | +/** | |
| 16 | + 商品id | |
| 17 | + */ | |
| 18 | +@property (nonatomic,copy) NSString * id; | |
| 19 | +/** | |
| 20 | + 标题 | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) NSString * title; | |
| 23 | +/** | |
| 24 | + 图片 | |
| 25 | + */ | |
| 26 | +@property (nonatomic,copy) NSString * simg; | |
| 27 | +/** | |
| 28 | + 价格 | |
| 29 | + */ | |
| 30 | +@property (nonatomic,copy) NSString * price; | |
| 31 | +/** | |
| 32 | + 划去的价格 | |
| 33 | + */ | |
| 34 | +@property (nonatomic,copy) NSString * prices; | |
| 35 | +/** | |
| 36 | + 店铺id | |
| 37 | + */ | |
| 38 | +@property (nonatomic,copy) NSString * shop_id; | |
| 39 | +/** | |
| 40 | + 描述 | |
| 41 | + */ | |
| 42 | +@property (nonatomic,copy) NSString * ads; | |
| 43 | +/** | |
| 44 | + 数量 | |
| 45 | + */ | |
| 46 | +@property (nonatomic,copy) NSString * num; | |
| 47 | + | |
| 48 | +@end | |
| 49 | + | |
| 50 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsModel.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsModel.h | |
| 3 | +// guoguanjuyanglao | |
| 4 | +// | |
| 5 | +// Created by 张魁 on 2017/5/31. | |
| 6 | +// Copyright © 2017年 zhaolin. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | +#import "DSROrderDetailsShopModel.h" | |
| 11 | +#import "DSROrderDetailsGoodsModel.h" | |
| 12 | +#import "DSROrderDetailsFirSLayout.h" | |
| 13 | + | |
| 14 | +@interface DSROrderDetailsModel : NSObject | |
| 15 | + | |
| 16 | +/** | |
| 17 | + 订单id | |
| 18 | + */ | |
| 19 | +@property (nonatomic,copy) NSString * id; | |
| 20 | +/** | |
| 21 | + 订单号 | |
| 22 | + */ | |
| 23 | +@property (nonatomic,copy) NSString * orderid; | |
| 24 | +/** | |
| 25 | + 是否允许退款 2 允许 | |
| 26 | + */ | |
| 27 | +@property (nonatomic,copy) NSString * is_refund; | |
| 28 | +/** | |
| 29 | + 用户id | |
| 30 | + */ | |
| 31 | +@property (nonatomic,copy) NSString * uid; | |
| 32 | +/** | |
| 33 | + 支付价格 | |
| 34 | + */ | |
| 35 | +@property (nonatomic,copy) NSString * price; | |
| 36 | +/** | |
| 37 | + 下单时间戳 | |
| 38 | + */ | |
| 39 | +@property (nonatomic,copy) NSString * addtime; | |
| 40 | +/** | |
| 41 | + 评价 | |
| 42 | + */ | |
| 43 | +@property (nonatomic,copy) NSString * comment; | |
| 44 | +/** | |
| 45 | + 订单类型 1 外卖配送 2 到店就餐 3 到店自取 | |
| 46 | + */ | |
| 47 | +@property (nonatomic,assign) NSUInteger delivery; | |
| 48 | +/** | |
| 49 | + 店铺id | |
| 50 | + */ | |
| 51 | +@property (nonatomic,copy) NSString * shopid; | |
| 52 | +/** | |
| 53 | + 状态 delivery 为 1 时 (1待付款 2已取消 3待接单 4同时判断 user_id 为 0 为备餐中 不为0为待配送 5配送中/待取餐 7已退款 9待确认 11订单完成) | |
| 54 | + delivery 为 2 时 (1待付款 2已取消 3待接单 7已退款 10 待消费 11订单完成) | |
| 55 | + delivery 为 3 时 (1待付款 2已取消 3待接单 4备餐中 5 待取餐 7已退款 9待确认 11订单完成) | |
| 56 | + */ | |
| 57 | +@property (nonatomic,assign) NSUInteger state; | |
| 58 | +/** | |
| 59 | + 如果 delivery为 1时 显示的是用户的地址信息 其他 为店铺的地址信息 | |
| 60 | + */ | |
| 61 | +@property (nonatomic,copy) NSString * address_name; | |
| 62 | +/** | |
| 63 | + 如果 delivery为 1时 显示的是用户的地址信息 其他 为店铺的地址信息 | |
| 64 | + */ | |
| 65 | +@property (nonatomic,copy) NSString * address_phone; | |
| 66 | +/** | |
| 67 | + 如果 delivery为 1时 显示的是用户的地址信息 其他 为店铺的地址信息 | |
| 68 | + */ | |
| 69 | +@property (nonatomic,copy) NSString * address_address; | |
| 70 | +/** | |
| 71 | + 如果 delivery为 1时 显示的是用户的地址信息 其他 为店铺的地址信息 | |
| 72 | + */ | |
| 73 | +@property (nonatomic,copy) NSString * address_longitude; | |
| 74 | +/** | |
| 75 | + 如果 delivery为 1时 显示的是用户的地址信息 其他 为店铺的地址信息 | |
| 76 | + */ | |
| 77 | +@property (nonatomic,copy) NSString * address_latitude; | |
| 78 | +/** | |
| 79 | + 备注 | |
| 80 | + */ | |
| 81 | +@property (nonatomic,copy) NSString * content; | |
| 82 | +/** | |
| 83 | + 支付方式 支付方式 1支付宝 2微信 3银联 4网家家 0 未支付 | |
| 84 | + */ | |
| 85 | +@property (nonatomic,assign) NSUInteger payment; | |
| 86 | +/** | |
| 87 | + 是否退款中 2为退款中 | |
| 88 | + */ | |
| 89 | +@property (nonatomic,copy) NSString * is_tui; | |
| 90 | +/** | |
| 91 | + 用餐码 | |
| 92 | + */ | |
| 93 | +@property (nonatomic,copy) NSString * consume_code; | |
| 94 | +/** | |
| 95 | + 是否可以催单 | |
| 96 | + */ | |
| 97 | +@property (nonatomic,copy) NSString * is_urge; | |
| 98 | +/** | |
| 99 | + 支付时间 | |
| 100 | + */ | |
| 101 | +@property (nonatomic,copy) NSString * buytime; | |
| 102 | +/** | |
| 103 | + 配送/自取时间 | |
| 104 | + */ | |
| 105 | +@property (nonatomic,copy) NSString * sendtime; | |
| 106 | +/** | |
| 107 | + 预计送达时间 | |
| 108 | + */ | |
| 109 | +@property (nonatomic,copy) NSString * estimate_time; | |
| 110 | +/** | |
| 111 | + 填写的电话 | |
| 112 | + */ | |
| 113 | +@property (nonatomic,copy) NSString * select_phone; | |
| 114 | +/** | |
| 115 | + 选择的时间 到店就餐时为0为现已到店 | |
| 116 | + */ | |
| 117 | +@property (nonatomic,copy) NSString * select_time; | |
| 118 | +/** | |
| 119 | + 退款时间 | |
| 120 | + */ | |
| 121 | +@property (nonatomic,copy) NSString * refund_time; | |
| 122 | +/** | |
| 123 | + 取消时间 | |
| 124 | + */ | |
| 125 | +@property (nonatomic,copy) NSString * cancel_time; | |
| 126 | +/** | |
| 127 | + 退款原因 或 取消原因 | |
| 128 | + */ | |
| 129 | +@property (nonatomic,copy) NSString * cancel_content; | |
| 130 | +/** | |
| 131 | + 就餐时间 等于完成时间 | |
| 132 | + */ | |
| 133 | +@property (nonatomic,copy) NSString * repast_time; | |
| 134 | +/** | |
| 135 | + 完成时间 | |
| 136 | + */ | |
| 137 | +@property (nonatomic,copy) NSString * finishtime; | |
| 138 | +/** | |
| 139 | + 接单时间 | |
| 140 | + */ | |
| 141 | +@property (nonatomic,copy) NSString * receipt_time; | |
| 142 | +/** | |
| 143 | + 配送费用 | |
| 144 | + */ | |
| 145 | +@property (nonatomic,copy) NSString * express_price; | |
| 146 | +/** | |
| 147 | + 餐盒费用 | |
| 148 | + */ | |
| 149 | +@property (nonatomic,copy) NSString * tableware_price; | |
| 150 | +/** | |
| 151 | + 满减优惠金额 | |
| 152 | + */ | |
| 153 | +@property (nonatomic,copy) NSString * lessen_price; | |
| 154 | +/** | |
| 155 | + 优惠红包优惠金额 | |
| 156 | + */ | |
| 157 | +@property (nonatomic,copy) NSString * coupon_price; | |
| 158 | +/** | |
| 159 | + 餐具内容 | |
| 160 | + */ | |
| 161 | +@property (nonatomic,copy) NSString * tableware; | |
| 162 | +/** | |
| 163 | + 配送人id | |
| 164 | + */ | |
| 165 | +@property (nonatomic,copy) NSString * user_id; | |
| 166 | +/** | |
| 167 | + 二维码地址 有就显示 | |
| 168 | + */ | |
| 169 | +@property (nonatomic,copy) NSString * ewm_img_url; | |
| 170 | +/** | |
| 171 | + 商家或者配送员确认时间 | |
| 172 | + */ | |
| 173 | +@property (nonatomic,copy) NSString * confirm_time; | |
| 174 | +/** | |
| 175 | + 是否投诉 1已经投诉 0未投诉 | |
| 176 | + */ | |
| 177 | +@property (nonatomic,assign) BOOL is_complain; | |
| 178 | +/** | |
| 179 | + 店铺信息 | |
| 180 | + */ | |
| 181 | +@property (nonatomic,strong) DSROrderDetailsShopModel * shop; | |
| 182 | +/** | |
| 183 | + 商品列表 | |
| 184 | + */ | |
| 185 | +@property (nonatomic,copy) NSArray<DSROrderDetailsGoodsModel*> * goods; | |
| 186 | + | |
| 187 | +#pragma mark - 自己加的 | |
| 188 | + | |
| 189 | +/** | |
| 190 | + 样式一部分布局 | |
| 191 | + */ | |
| 192 | +@property (nonatomic,strong) DSROrderDetailsFirSLayout * firSLayout; | |
| 193 | + | |
| 194 | +-(void)calcLayout; | |
| 195 | + | |
| 196 | +@end | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsSecSTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsSecSTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsSecSTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/30. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import "DSROrderDetailsModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSROrderDetailsSecSTableViewCell : DSTableViewCell | |
| 15 | + | |
| 16 | +@property (nonatomic,strong) DSROrderDetailsModel * model; | |
| 17 | + | |
| 18 | +@end | |
| 19 | + | |
| 20 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsSectionHeaderView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsSectionHeaderView.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsSectionHeaderView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/30. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSROrderDetailsSectionHeaderView : UITableViewHeaderFooterView | |
| 14 | + | |
| 15 | +#pragma mark - 赋值 | |
| 16 | + | |
| 17 | +@property (nonatomic,assign) NSUInteger section; | |
| 18 | + | |
| 19 | +@property (nonatomic,copy,readonly) NSString * title; | |
| 20 | +@property (nonatomic,assign,readonly) BOOL isDisplayUnfold; | |
| 21 | +@property (nonatomic,assign,readonly) BOOL isHideLine; | |
| 22 | + | |
| 23 | +-(void)setTitle:(NSString*)title isDisplayUnfold:(BOOL)isDisplayUnfold isHideLine:(BOOL)isHideLine; | |
| 24 | + | |
| 25 | +#pragma mark - 回调 | |
| 26 | + | |
| 27 | +/** | |
| 28 | + 点击折叠按钮回调 | |
| 29 | + */ | |
| 30 | +@property (nonatomic,copy) void (^clickUnfoldCallBack)(void); | |
| 31 | +/** | |
| 32 | + 点击标题回调 | |
| 33 | + */ | |
| 34 | +@property (nonatomic,copy) void (^clickTitleCallBack)(NSUInteger section); | |
| 35 | + | |
| 36 | +@end | |
| 37 | + | |
| 38 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsShopModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsShopModel.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsShopModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/29. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSROrderDetailsShopModel : NSObject | |
| 14 | + | |
| 15 | +/** | |
| 16 | + 店铺id | |
| 17 | + */ | |
| 18 | +@property (nonatomic,copy) NSString * id; | |
| 19 | +/** | |
| 20 | + | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) NSString * title; | |
| 23 | +/** | |
| 24 | + logo | |
| 25 | + */ | |
| 26 | +@property (nonatomic,copy) NSString * simg; | |
| 27 | +/** | |
| 28 | + 商家id | |
| 29 | + */ | |
| 30 | +@property (nonatomic,copy) NSString * shop_id; | |
| 31 | +/** | |
| 32 | + | |
| 33 | + */ | |
| 34 | +@property (nonatomic,copy) NSString * bg_img; | |
| 35 | +/** | |
| 36 | + | |
| 37 | + */ | |
| 38 | +@property (nonatomic,copy) NSString * state; | |
| 39 | +/** | |
| 40 | + | |
| 41 | + */ | |
| 42 | +@property (nonatomic,copy) NSString * pv; | |
| 43 | +/** | |
| 44 | + | |
| 45 | + */ | |
| 46 | +@property (nonatomic,copy) NSString * price; | |
| 47 | +/** | |
| 48 | + | |
| 49 | + */ | |
| 50 | +@property (nonatomic,copy) NSString * starttime; | |
| 51 | +/** | |
| 52 | + | |
| 53 | + */ | |
| 54 | +@property (nonatomic,copy) NSString * stoptime; | |
| 55 | +/** | |
| 56 | + | |
| 57 | + */ | |
| 58 | +@property (nonatomic,assign) double longitude; | |
| 59 | +/** | |
| 60 | + | |
| 61 | + */ | |
| 62 | +@property (nonatomic,assign) double latitude; | |
| 63 | +/** | |
| 64 | + 电话 | |
| 65 | + */ | |
| 66 | +@property (nonatomic,copy) NSString * phone; | |
| 67 | +/** | |
| 68 | + | |
| 69 | + */ | |
| 70 | +@property (nonatomic,copy) NSString * address; | |
| 71 | +/** | |
| 72 | + | |
| 73 | + */ | |
| 74 | +@property (nonatomic,copy) NSString * grade; | |
| 75 | +/** | |
| 76 | + | |
| 77 | + */ | |
| 78 | +@property (nonatomic,copy) NSString * notice; | |
| 79 | +/** | |
| 80 | + | |
| 81 | + */ | |
| 82 | +@property (nonatomic,copy) NSString * is_take_out; | |
| 83 | +/** | |
| 84 | + | |
| 85 | + */ | |
| 86 | +@property (nonatomic,copy) NSString * is_take_self; | |
| 87 | +/** | |
| 88 | + | |
| 89 | + */ | |
| 90 | +@property (nonatomic,copy) NSString * is_order_food; | |
| 91 | +/** | |
| 92 | + | |
| 93 | + */ | |
| 94 | +@property (nonatomic,copy) NSString * is_book_table; | |
| 95 | +/** | |
| 96 | + | |
| 97 | + */ | |
| 98 | +@property (nonatomic,copy) NSString * seller_id; | |
| 99 | +/** | |
| 100 | + | |
| 101 | + */ | |
| 102 | +@property (nonatomic,copy) NSString * daren_id; | |
| 103 | + | |
| 104 | +@end | |
| 105 | + | |
| 106 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsThiSTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsThiSTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsThiSTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/30. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import "DSROrderDetailsModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSROrderDetailsThiSTableViewCell : DSTableViewCell | |
| 15 | + | |
| 16 | +@property (nonatomic,strong) DSROrderDetailsModel * model; | |
| 17 | + | |
| 18 | +@end | |
| 19 | + | |
| 20 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsTopView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsTopView.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsTopView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/29. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSROrderDetailsTopView : UIView | |
| 14 | + | |
| 15 | +#pragma mark - 回调 | |
| 16 | + | |
| 17 | +@property (nonatomic,copy) void (^clickBackCallBack)(void); | |
| 18 | + | |
| 19 | +#pragma mark - 赋值 | |
| 20 | + | |
| 21 | +@property (nonatomic,copy) NSString * title; | |
| 22 | + | |
| 23 | +@end | |
| 24 | + | |
| 25 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderDetailsViewController.h | |
| 1 | +// | |
| 2 | +// DSROrderDetailsViewController.h | |
| 3 | +// guoguanjuyanglao | |
| 4 | +// | |
| 5 | +// Created by 张魁 on 2017/5/18. | |
| 6 | +// Copyright © 2017年 zhaolin. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | + | |
| 11 | +@interface DSROrderDetailsViewController : DSBaseViewController | |
| 12 | + | |
| 13 | +@property (nonatomic,copy) NSString * orderid; | |
| 14 | + | |
| 15 | +@end | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListCollectionReusableFooterView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListCollectionReusableFooterView.h | |
| 1 | +// | |
| 2 | +// DSROrderListCollectionReusableFooterView.h | |
| 3 | +// guoguanjuyanglao | |
| 4 | +// | |
| 5 | +// Created by 兆林 on 2017/5/19. | |
| 6 | +// Copyright © 2017年 zhaolin. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import "DSROrderListListModel.h" | |
| 11 | + | |
| 12 | +@interface DSROrderListCollectionReusableFooterView : UICollectionReusableView | |
| 13 | + | |
| 14 | +#pragma mark - 赋值 | |
| 15 | + | |
| 16 | +@property (nonatomic,strong,readonly) DSROrderListListModel * model; | |
| 17 | +@property (nonatomic,assign,readonly) BOOL isLast; | |
| 18 | + | |
| 19 | +-(void)setModel:(DSROrderListListModel *)model isLast:(BOOL)isLast; | |
| 20 | + | |
| 21 | +#pragma mark - 回调 | |
| 22 | + | |
| 23 | +@property (nonatomic,copy) void (^clickBgCallBack)(DSROrderListListModel * model); | |
| 24 | +@property (nonatomic,copy) void (^clickPayCallBack)(DSROrderListListModel * model); | |
| 25 | +@property (nonatomic,copy) void (^clickDeleteCallBack)(DSROrderListListModel * model); | |
| 26 | +@property (nonatomic,copy) void (^clickCompleteDeliveryCallBack)(DSROrderListListModel * model); | |
| 27 | +@property (nonatomic,copy) void (^clickConfirmTakeCallBack)(DSROrderListListModel * model); | |
| 28 | + | |
| 29 | +@end | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListCollectionReusableHeaderView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListCollectionReusableHeaderView.h | |
| 1 | +// | |
| 2 | +// DSROrderListCollectionReusableHeaderView.h | |
| 3 | +// guoguanjuyanglao | |
| 4 | +// | |
| 5 | +// Created by 兆林 on 2017/5/19. | |
| 6 | +// Copyright © 2017年 zhaolin. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import "DSROrderListListModel.h" | |
| 11 | + | |
| 12 | +@interface DSROrderListCollectionReusableHeaderView : UICollectionReusableView | |
| 13 | + | |
| 14 | +#pragma mark - 赋值 | |
| 15 | + | |
| 16 | +@property (nonatomic,strong,readonly) DSROrderListListModel * model; | |
| 17 | +@property (nonatomic,strong,readonly) NSIndexPath * indexPath; | |
| 18 | + | |
| 19 | +-(void)setModel:(DSROrderListListModel *)model indexPath:(NSIndexPath *)indexPath; | |
| 20 | + | |
| 21 | +#pragma mark - 回调 | |
| 22 | + | |
| 23 | +@property (nonatomic,copy) void (^clickBgCallBack)(DSROrderListListModel * model); | |
| 24 | + | |
| 25 | +@end | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListCollectionViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListCollectionViewCell.h | |
| 1 | +// | |
| 2 | +// DSROrderListCollectionViewCell.h | |
| 3 | +// guoguanjuyanglao | |
| 4 | +// | |
| 5 | +// Created by 兆林 on 2017/5/19. | |
| 6 | +// Copyright © 2017年 zhaolin. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | +#import "DSROrderListListGoodsModel.h" | |
| 11 | + | |
| 12 | +@interface DSROrderListCollectionViewCell : UICollectionViewCell | |
| 13 | + | |
| 14 | +@property (nonatomic,strong) DSROrderListListGoodsModel * model; | |
| 15 | + | |
| 16 | +@end | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListListGoodsModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListListGoodsModel.h | |
| 1 | +// | |
| 2 | +// DSROrderListListGoodsModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/29. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSROrderListListGoodsModel : NSObject | |
| 14 | + | |
| 15 | +/** | |
| 16 | + 商品id | |
| 17 | + */ | |
| 18 | +@property (nonatomic,copy) NSString * id; | |
| 19 | +/** | |
| 20 | + 标题 | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) NSString * title; | |
| 23 | +/** | |
| 24 | + 图片 | |
| 25 | + */ | |
| 26 | +@property (nonatomic,copy) NSString * simg; | |
| 27 | +/** | |
| 28 | + 价格 | |
| 29 | + */ | |
| 30 | +@property (nonatomic,copy) NSString * price; | |
| 31 | +/** | |
| 32 | + 划去的价格 | |
| 33 | + */ | |
| 34 | +@property (nonatomic,copy) NSString * prices; | |
| 35 | +/** | |
| 36 | + 店铺id | |
| 37 | + */ | |
| 38 | +@property (nonatomic,copy) NSString * shop_id; | |
| 39 | +/** | |
| 40 | + 描述 | |
| 41 | + */ | |
| 42 | +@property (nonatomic,copy) NSString * ads; | |
| 43 | +/** | |
| 44 | + 数量 | |
| 45 | + */ | |
| 46 | +@property (nonatomic,copy) NSString * num; | |
| 47 | + | |
| 48 | +@end | |
| 49 | + | |
| 50 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListListModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListListModel.h | |
| 1 | +// | |
| 2 | +// DSROrderListListModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/29. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | +#import "DSROrderListListShopModel.h" | |
| 11 | +#import "DSROrderListListGoodsModel.h" | |
| 12 | + | |
| 13 | +NS_ASSUME_NONNULL_BEGIN | |
| 14 | + | |
| 15 | +@interface DSROrderListListModel : NSObject | |
| 16 | + | |
| 17 | +/** | |
| 18 | + 订单id | |
| 19 | + */ | |
| 20 | +@property (nonatomic,copy) NSString * id; | |
| 21 | +/** | |
| 22 | + 订单号 | |
| 23 | + */ | |
| 24 | +@property (nonatomic,copy) NSString * orderid; | |
| 25 | +/** | |
| 26 | + 订单类型 1 外卖配送 2 到店就餐 3 到店自取 | |
| 27 | + */ | |
| 28 | +@property (nonatomic,assign) NSUInteger delivery; | |
| 29 | +/** | |
| 30 | + 支付价格 | |
| 31 | + */ | |
| 32 | +@property (nonatomic,copy) NSString * price; | |
| 33 | +/** | |
| 34 | + 下单时间戳 | |
| 35 | + */ | |
| 36 | +@property (nonatomic,copy) NSString * addtime; | |
| 37 | +/** | |
| 38 | + 店铺id | |
| 39 | + */ | |
| 40 | +@property (nonatomic,copy) NSString * shopid; | |
| 41 | +/** | |
| 42 | + 状态 delivery 为 1 时 (1待付款 2已取消 3待接单 4同时判断 user_id 为 0 为备餐中 不为0为待配送 5配送中/待取餐 7已退款 9待确认 11订单完成) | |
| 43 | + delivery 为 2 时 (1待付款 2已取消 3待接单 7已退款 10 待消费 11订单完成) | |
| 44 | + delivery 为 3 时 (1待付款 2已取消 3待接单 4备餐中 5 待取餐 7已退款 9待确认 11订单完成) | |
| 45 | + */ | |
| 46 | +@property (nonatomic,assign) NSUInteger state; | |
| 47 | +/** | |
| 48 | + 是否退款中 2为退款中 | |
| 49 | + */ | |
| 50 | +@property (nonatomic,copy) NSString * is_tui; | |
| 51 | +/** | |
| 52 | + 是否允许退款 2 允许 | |
| 53 | + */ | |
| 54 | +@property (nonatomic,copy) NSString * is_refund; | |
| 55 | +/** | |
| 56 | + 是否投诉 1已经投诉 0未投诉 | |
| 57 | + */ | |
| 58 | +@property (nonatomic,assign) BOOL is_complain; | |
| 59 | +/** | |
| 60 | + 评价 | |
| 61 | + */ | |
| 62 | +@property (nonatomic,copy) NSString * comment; | |
| 63 | +/** | |
| 64 | + 配送费用 | |
| 65 | + */ | |
| 66 | +@property (nonatomic,copy) NSString * express_price; | |
| 67 | +/** | |
| 68 | + 餐盒费用 | |
| 69 | + */ | |
| 70 | +@property (nonatomic,copy) NSString * tableware_price; | |
| 71 | +/** | |
| 72 | + 满减优惠金额 | |
| 73 | + */ | |
| 74 | +@property (nonatomic,copy) NSString * lessen_price; | |
| 75 | +/** | |
| 76 | + 优惠红包优惠金额 | |
| 77 | + */ | |
| 78 | +@property (nonatomic,copy) NSString * coupon_price; | |
| 79 | +/** | |
| 80 | + 配送人id | |
| 81 | + */ | |
| 82 | +@property (nonatomic,copy) NSString * user_id; | |
| 83 | +/** | |
| 84 | + 选择的时间 到店就餐时为0为现已到店 | |
| 85 | + */ | |
| 86 | +@property (nonatomic,copy) NSString * select_time; | |
| 87 | +/** | |
| 88 | + 店铺信息 | |
| 89 | + */ | |
| 90 | +@property (nonatomic,strong) DSROrderListListShopModel * shop; | |
| 91 | +/** | |
| 92 | + 商品列表 | |
| 93 | + */ | |
| 94 | +@property (nonatomic,copy) NSArray<DSROrderListListGoodsModel*> * goods; | |
| 95 | + | |
| 96 | +@end | |
| 97 | + | |
| 98 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListListShopModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListListShopModel.h | |
| 1 | +// | |
| 2 | +// DSROrderListListShopModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/29. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSROrderListListShopModel : NSObject | |
| 14 | + | |
| 15 | +/** | |
| 16 | + 店铺id | |
| 17 | + */ | |
| 18 | +@property (nonatomic,copy) NSString * id; | |
| 19 | +/** | |
| 20 | + 店铺名称 | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) NSString * title; | |
| 23 | +/** | |
| 24 | + 店铺logo | |
| 25 | + */ | |
| 26 | +@property (nonatomic,copy) NSString * simg; | |
| 27 | + | |
| 28 | +@end | |
| 29 | + | |
| 30 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListModel.h | |
| 1 | +// | |
| 2 | +// DSROrderListModel.h | |
| 3 | +// guoguanjuyanglao | |
| 4 | +// | |
| 5 | +// Created by 兆林 on 2017/5/31. | |
| 6 | +// Copyright © 2017年 zhaolin. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | +#import "DSROrderListListModel.h" | |
| 11 | + | |
| 12 | +@interface DSROrderListModel : NSObject | |
| 13 | + | |
| 14 | +/** | |
| 15 | + 列表数据 | |
| 16 | + */ | |
| 17 | +@property (nonatomic,copy) NSArray<DSROrderListListModel*> * list; | |
| 18 | + | |
| 19 | +@end | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListSubViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListSubViewController.h | |
| 1 | +// | |
| 2 | +// DSROrderListSubViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/8/19. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSROrderListSubViewController : DSBaseViewController | |
| 14 | + | |
| 15 | +@property (nonatomic,strong) DSCollectionView * collectionView; | |
| 16 | + | |
| 17 | +@end | |
| 18 | + | |
| 19 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSROrderListViewController.h | |
| 1 | +// | |
| 2 | +// DSROrderListViewController.h | |
| 3 | +// guoguanjuyanglao | |
| 4 | +// | |
| 5 | +// Created by 兆林 on 2017/5/19. | |
| 6 | +// Copyright © 2017年 zhaolin. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | + | |
| 11 | +typedef NS_ENUM(NSUInteger, DSROrderListDisplay) { | |
| 12 | + DSROrderListDisplayTotal = 0, //全部 | |
| 13 | + DSROrderListDisplayFinish, //待付款 | |
| 14 | + DSROrderListDisplayCancel //待发货 | |
| 15 | +}; | |
| 16 | + | |
| 17 | +@interface DSROrderListViewController : DSBaseViewController | |
| 18 | + | |
| 19 | +/** | |
| 20 | + 查看界面 | |
| 21 | + */ | |
| 22 | +@property (nonatomic,assign) DSROrderListDisplay display; | |
| 23 | +/** | |
| 24 | + 是否需要导航条(默认不需要) | |
| 25 | + */ | |
| 26 | +@property (nonatomic,assign) BOOL isNeedNavigationBar; | |
| 27 | +/** | |
| 28 | + 餐厅目录背景颜色(默认白色) | |
| 29 | + */ | |
| 30 | +@property (nonatomic,strong) UIColor * menuColor; | |
| 31 | + | |
| 32 | +@end | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRecommendViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRecommendViewController.h | |
| 1 | +// | |
| 2 | +// DSRRecommendViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/24. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRRecommendViewController : DSBaseViewController | |
| 14 | + | |
| 15 | +@end | |
| 16 | + | |
| 17 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundApplyModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundApplyModel.h | |
| 1 | +// | |
| 2 | +// DSRRefundApplyModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2020/1/9. | |
| 6 | +// Copyright © 2020 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRRefundApplyModel : NSObject | |
| 14 | + | |
| 15 | +/// 可退款金额 | |
| 16 | +@property (nonatomic,copy) NSString * price; | |
| 17 | + | |
| 18 | +@end | |
| 19 | + | |
| 20 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundApplyTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundApplyTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSRRefundApplyTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/2/16. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <DSBaseModule/DSBaseModule.h> | |
| 9 | + | |
| 10 | +NS_ASSUME_NONNULL_BEGIN | |
| 11 | + | |
| 12 | +@interface DSRRefundApplyTableViewCell : DSTableViewCell | |
| 13 | + | |
| 14 | +@property (nonatomic,strong) DSTextView * descTextView; | |
| 15 | + | |
| 16 | +#pragma mark - 赋值 | |
| 17 | + | |
| 18 | +@property (nonatomic,assign,readonly) NSUInteger row; | |
| 19 | +@property (nonatomic,copy,readonly) NSAttributedString * title; | |
| 20 | +@property (nonatomic,copy,readonly) NSString * content; | |
| 21 | +@property (nonatomic,copy,readonly) NSString * placeholder; | |
| 22 | +@property (nonatomic,assign,readonly) BOOL isDisplayRightArrowImage; | |
| 23 | + | |
| 24 | +-(void)setRow:(NSUInteger)row title:(NSAttributedString*)title content:(NSString*)content placeholder:(NSString*)placeholder isDisplayRightArrowImage:(BOOL)isDisplayRightArrowImage; | |
| 25 | + | |
| 26 | +@end | |
| 27 | + | |
| 28 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundApplyViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundApplyViewController.h | |
| 1 | +// | |
| 2 | +// DSRRefundApplyViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/2/16. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <DSBaseModule/DSBaseModule.h> | |
| 9 | + | |
| 10 | +typedef NS_ENUM(NSUInteger, DSRRefundApplyType) { | |
| 11 | + DSRRefundApplyTypeApply = 0, //申请 | |
| 12 | + DSRRefundApplyTypeEdit //修改 | |
| 13 | +}; | |
| 14 | + | |
| 15 | +NS_ASSUME_NONNULL_BEGIN | |
| 16 | + | |
| 17 | +@interface DSRRefundApplyViewController : DSBaseViewController | |
| 18 | + | |
| 19 | +/** | |
| 20 | + 格式 | |
| 21 | + */ | |
| 22 | +@property (nonatomic,assign) DSRRefundApplyType type; | |
| 23 | +/** | |
| 24 | + 订单Id | |
| 25 | + */ | |
| 26 | +@property (nonatomic,copy) NSString * orderId; | |
| 27 | + | |
| 28 | +#pragma mark - 下面是修改申请退款时用到的 | |
| 29 | + | |
| 30 | +/** | |
| 31 | + 退款Id | |
| 32 | + */ | |
| 33 | +@property (nonatomic,copy) NSString * refundId; | |
| 34 | +/** | |
| 35 | + 退款金额 (餐厅在申请退款时也用到了) | |
| 36 | + */ | |
| 37 | +@property (nonatomic,copy) NSString * price; | |
| 38 | +/** | |
| 39 | + 退款原因 | |
| 40 | + */ | |
| 41 | +@property (nonatomic,copy) NSString * reason; | |
| 42 | +/** | |
| 43 | + 退款说明 | |
| 44 | + */ | |
| 45 | +@property (nonatomic,copy) NSString * desc; | |
| 46 | + | |
| 47 | +@end | |
| 48 | + | |
| 49 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundDetailsModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundDetailsModel.h | |
| 1 | +// | |
| 2 | +// DSRRefundDetailsModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/2/19. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <Foundation/Foundation.h> | |
| 9 | + | |
| 10 | +NS_ASSUME_NONNULL_BEGIN | |
| 11 | + | |
| 12 | +@interface DSRRefundDetailsModel : NSObject | |
| 13 | + | |
| 14 | +/** | |
| 15 | + 审核原因(取消退款状态显示) | |
| 16 | + */ | |
| 17 | +@property (nonatomic,copy) NSString * desc; | |
| 18 | +/** | |
| 19 | + 店铺名称 | |
| 20 | + */ | |
| 21 | +@property (nonatomic,copy) NSString * shop_name; | |
| 22 | +/** | |
| 23 | + 退款说明 | |
| 24 | + */ | |
| 25 | +@property (nonatomic,copy) NSString * content; | |
| 26 | +/** | |
| 27 | + 申请时间 | |
| 28 | + */ | |
| 29 | +@property (nonatomic,copy) NSString * addtime; | |
| 30 | +/** | |
| 31 | + 退款编号id | |
| 32 | + */ | |
| 33 | +@property (nonatomic,copy) NSString * id; | |
| 34 | +/** | |
| 35 | + 退款金额 | |
| 36 | + */ | |
| 37 | +@property (nonatomic,copy) NSString * price; | |
| 38 | +/** | |
| 39 | + 退款原因 | |
| 40 | + */ | |
| 41 | +@property (nonatomic,copy) NSString * title; | |
| 42 | +/** | |
| 43 | + 审核时间(关闭时间 退款时间都是 根据状态判断) | |
| 44 | + */ | |
| 45 | +@property (nonatomic,copy) NSString * statetime; | |
| 46 | +/** | |
| 47 | + 状态 1申请中 2已通过 3商家拒绝退款 5取消退款 | |
| 48 | + */ | |
| 49 | +@property (nonatomic,copy) NSString * state; | |
| 50 | +/** | |
| 51 | + 申请中判断 等于1时味可修改状态 为2时不可以修改 | |
| 52 | + */ | |
| 53 | +@property (nonatomic,copy) NSString * status; | |
| 54 | +/** | |
| 55 | + 退货方式 1退款退货 2退款不退货 | |
| 56 | + */ | |
| 57 | +@property (nonatomic,copy) NSString * tui_mode; | |
| 58 | +/** | |
| 59 | + 快递公司id | |
| 60 | + */ | |
| 61 | +@property (nonatomic,copy) NSString * express_ids; | |
| 62 | +/** | |
| 63 | + 申请退款 快递公司 | |
| 64 | + */ | |
| 65 | +@property (nonatomic,copy) NSString * express; | |
| 66 | +/** | |
| 67 | + 申请退款 快递编号 | |
| 68 | + */ | |
| 69 | +@property (nonatomic,copy) NSString * express_num; | |
| 70 | +/** | |
| 71 | + 快递修改状态 1可修改 2不可修改 | |
| 72 | + */ | |
| 73 | +@property (nonatomic,copy) NSString * express_edit_state; | |
| 74 | +/** | |
| 75 | + 快递修改信息 (一维数组) | |
| 76 | + */ | |
| 77 | +@property (nonatomic,copy) NSArray<NSString*> * express_record; | |
| 78 | +/** | |
| 79 | + 退货联系人 | |
| 80 | + */ | |
| 81 | +@property (nonatomic,copy) NSString * return_name; | |
| 82 | +/** | |
| 83 | + 退货联系电话 | |
| 84 | + */ | |
| 85 | +@property (nonatomic,copy) NSString * return_phone; | |
| 86 | +/** | |
| 87 | + 退货地址 | |
| 88 | + */ | |
| 89 | +@property (nonatomic,copy) NSString * return_address; | |
| 90 | + | |
| 91 | +#pragma mark - 自己加的 | |
| 92 | + | |
| 93 | +/** | |
| 94 | + 是否手动再次修改快递信息 | |
| 95 | + */ | |
| 96 | +@property (nonatomic,assign) BOOL isManualEditExpressMessage; | |
| 97 | + | |
| 98 | +@end | |
| 99 | + | |
| 100 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundDetailsTableHeaderView.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundDetailsTableHeaderView.h | |
| 1 | +// | |
| 2 | +// DSRRefundDetailsTableHeaderView.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/2/19. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <UIKit/UIKit.h> | |
| 9 | +#import "DSRRefundDetailsModel.h" | |
| 10 | +#import "DSRRefundDetailsViewController.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRRefundDetailsTableHeaderView : UIView | |
| 15 | + | |
| 16 | +@property (nonatomic,strong) DSRRefundDetailsModel * detailsModel; | |
| 17 | + | |
| 18 | +@property (nonatomic,copy) void (^editRefundCallBack)(void);//修改退款 | |
| 19 | +@property (nonatomic,copy) void (^cancelRefundCallBack)(void);//取消退款 | |
| 20 | + | |
| 21 | +@end | |
| 22 | + | |
| 23 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundDetailsTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundDetailsTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSRRefundDetailsTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/2/19. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <DSBaseModule/DSBaseModule.h> | |
| 9 | + | |
| 10 | +NS_ASSUME_NONNULL_BEGIN | |
| 11 | + | |
| 12 | +@interface DSRRefundDetailsTableViewCell : DSTableViewCell | |
| 13 | + | |
| 14 | +@property (nonatomic,copy,readonly) NSString * title; | |
| 15 | +@property (nonatomic,copy,readonly) NSString * content; | |
| 16 | +@property (nonatomic,assign,readonly) BOOL isSectionHeader;//是否为区标题显示(省了写区头了) | |
| 17 | + | |
| 18 | +-(void)setTitle:(NSString*)title content:(NSString*)content isSectionHeader:(BOOL)isSectionHeader; | |
| 19 | + | |
| 20 | +@end | |
| 21 | + | |
| 22 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundDetailsViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRRefundDetailsViewController.h | |
| 1 | +// | |
| 2 | +// DSRRefundDetailsViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/2/19. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <DSBaseModule/DSBaseModule.h> | |
| 9 | + | |
| 10 | +NS_ASSUME_NONNULL_BEGIN | |
| 11 | + | |
| 12 | +@interface DSRRefundDetailsViewController : DSBaseViewController | |
| 13 | + | |
| 14 | +/** | |
| 15 | + 订单id | |
| 16 | + */ | |
| 17 | +@property (nonatomic,copy) NSString * orderId; | |
| 18 | + | |
| 19 | +@end | |
| 20 | + | |
| 21 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSDynamicViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSDynamicViewController.h | |
| 1 | +// | |
| 2 | +// DSRSDynamicViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/9. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRSDynamicViewController : DSBaseViewController | |
| 14 | + | |
| 15 | +@end | |
| 16 | + | |
| 17 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSEvaluateViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSEvaluateViewController.h | |
| 1 | +// | |
| 2 | +// DSRSEvaluateViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/9. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRSEvaluateViewController : DSBaseViewController | |
| 14 | + | |
| 15 | +@end | |
| 16 | + | |
| 17 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoFirLayout.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoFirLayout.h | |
| 1 | +// | |
| 2 | +// DSRSInfoFirLayout.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/12. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | +#import <UIKit/UIKit.h> | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRSInfoFirLayout : NSObject | |
| 15 | + | |
| 16 | +@property (nonatomic,assign) CGFloat descLabHeight; | |
| 17 | +@property (nonatomic,assign) CGFloat cellHeight; | |
| 18 | + | |
| 19 | +@end | |
| 20 | + | |
| 21 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoFirStyleTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoFirStyleTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSRSInfoFirStyleTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/12. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import "DSRSInfoModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRSInfoFirStyleTableViewCell : DSTableViewCell | |
| 15 | + | |
| 16 | +#pragma mark - 回调 | |
| 17 | + | |
| 18 | +/** | |
| 19 | + 点击推荐图片回调 | |
| 20 | + */ | |
| 21 | +@property (nonatomic,copy) void (^clickTopImageCallBack)(void); | |
| 22 | +/** | |
| 23 | + 点击品牌故事更多回调 | |
| 24 | + */ | |
| 25 | +@property (nonatomic,copy) void (^clickBrandCallBack)(DSRSInfoStoreCommonSkipModel * model); | |
| 26 | + | |
| 27 | +#pragma mark - 赋值 | |
| 28 | + | |
| 29 | +@property (nonatomic,strong) DSRSInfoModel * model; | |
| 30 | + | |
| 31 | +@end | |
| 32 | + | |
| 33 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoFouStyleTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoFouStyleTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSRSInfoFouStyleTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/12. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import "DSRSInfoModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRSInfoFouStyleTableViewCell : DSTableViewCell | |
| 15 | + | |
| 16 | +@property (nonatomic,strong,readonly) DSRSInfoModel * model; | |
| 17 | +@property (nonatomic,strong,readonly) NSIndexPath * indexPath; | |
| 18 | + | |
| 19 | +-(void)setModel:(DSRSInfoModel*)model indexPath:(NSIndexPath*)indexPath; | |
| 20 | + | |
| 21 | +@end | |
| 22 | + | |
| 23 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoModel.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoModel.h | |
| 1 | +// | |
| 2 | +// DSRSInfoModel.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/12. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | +#import "DSRSInfoFirLayout.h" | |
| 11 | +#import "DSRSInfoThiLayout.h" | |
| 12 | + | |
| 13 | +NS_ASSUME_NONNULL_BEGIN | |
| 14 | + | |
| 15 | +#pragma mark - 通用跳转 | |
| 16 | + | |
| 17 | +@interface DSRSInfoStoreCommonSkipModel : NSObject | |
| 18 | + | |
| 19 | +/** | |
| 20 | + 公共跳转 | |
| 21 | + */ | |
| 22 | +@property (nonatomic,copy) NSString * type; | |
| 23 | +/** | |
| 24 | + | |
| 25 | + */ | |
| 26 | +@property (nonatomic,copy) NSString * to; | |
| 27 | +/** | |
| 28 | + | |
| 29 | + */ | |
| 30 | +@property (nonatomic,copy) NSString * shop_type; | |
| 31 | + | |
| 32 | +@end | |
| 33 | + | |
| 34 | +#pragma mark - 红包 | |
| 35 | + | |
| 36 | +@interface DSRSInfoRedPacketModel : NSObject | |
| 37 | + | |
| 38 | +/** | |
| 39 | + 红包id | |
| 40 | + */ | |
| 41 | +@property (nonatomic,copy) NSString * id; | |
| 42 | +/** | |
| 43 | + 标题 | |
| 44 | + */ | |
| 45 | +@property (nonatomic,copy) NSString * title; | |
| 46 | +/** | |
| 47 | + 领取前图片 | |
| 48 | + */ | |
| 49 | +@property (nonatomic,copy) NSString * img; | |
| 50 | +/** | |
| 51 | + 领取后图片 | |
| 52 | + */ | |
| 53 | +@property (nonatomic,copy) NSString * simg; | |
| 54 | +/** | |
| 55 | + 领取后图片 | |
| 56 | + */ | |
| 57 | +@property (nonatomic,copy) NSString * simgs; | |
| 58 | +/** | |
| 59 | + 减 | |
| 60 | + */ | |
| 61 | +@property (nonatomic,copy) NSString * discount; | |
| 62 | +/** | |
| 63 | + 满 | |
| 64 | + */ | |
| 65 | +@property (nonatomic,copy) NSString * filled; | |
| 66 | +/** | |
| 67 | + | |
| 68 | + */ | |
| 69 | +@property (nonatomic,copy) NSString * is_all_shop; | |
| 70 | +/** | |
| 71 | + 是否领取 1领取 0未领取 2已使用 | |
| 72 | + */ | |
| 73 | +@property (nonatomic,assign) NSInteger is_gain; | |
| 74 | + | |
| 75 | +@end | |
| 76 | + | |
| 77 | +#pragma mark - 优惠券 | |
| 78 | + | |
| 79 | +@interface DSRSInfoCouponModel : NSObject | |
| 80 | + | |
| 81 | +/** | |
| 82 | + id | |
| 83 | + */ | |
| 84 | +@property (nonatomic,copy) NSString * id; | |
| 85 | +/** | |
| 86 | + 满 | |
| 87 | + */ | |
| 88 | +@property (nonatomic,copy) NSString * fulfil; | |
| 89 | +/** | |
| 90 | + 减 | |
| 91 | + */ | |
| 92 | +@property (nonatomic,copy) NSString * minus; | |
| 93 | + | |
| 94 | +@end | |
| 95 | + | |
| 96 | +#pragma mark - 品牌故事 | |
| 97 | + | |
| 98 | +@interface DSRSInfoShopModel : NSObject | |
| 99 | + | |
| 100 | +/** | |
| 101 | + 是否为top100 | |
| 102 | + */ | |
| 103 | +@property (nonatomic,assign) BOOL is_top100; | |
| 104 | +/** | |
| 105 | + 品牌图片 | |
| 106 | + */ | |
| 107 | +@property (nonatomic,copy) NSString * brand_banner; | |
| 108 | +/** | |
| 109 | + 标题 | |
| 110 | + */ | |
| 111 | +@property (nonatomic,copy) NSString * brand_title; | |
| 112 | +/** | |
| 113 | + 简介 | |
| 114 | + */ | |
| 115 | +@property (nonatomic,copy) NSString * brand_desc; | |
| 116 | +/** | |
| 117 | + top100图标 | |
| 118 | + */ | |
| 119 | +@property (nonatomic,copy) NSString * brand_top_img; | |
| 120 | +/** | |
| 121 | + 详情 通用跳转 | |
| 122 | + */ | |
| 123 | +@property (nonatomic,strong) DSRSInfoStoreCommonSkipModel * brand_url; | |
| 124 | + | |
| 125 | +@end | |
| 126 | + | |
| 127 | +#pragma mark - 店铺广告 | |
| 128 | + | |
| 129 | +@interface DSRSInfoShopAdsModel : NSObject | |
| 130 | + | |
| 131 | +/** | |
| 132 | + 展示图片 | |
| 133 | + */ | |
| 134 | +@property (nonatomic,copy) NSString * img; | |
| 135 | +/** | |
| 136 | + 公共跳转 | |
| 137 | + */ | |
| 138 | +@property (nonatomic,copy) NSString * type; | |
| 139 | +/** | |
| 140 | + | |
| 141 | + */ | |
| 142 | +@property (nonatomic,copy) NSString * to; | |
| 143 | +/** | |
| 144 | + | |
| 145 | + */ | |
| 146 | +@property (nonatomic,copy) NSString * shop_type; | |
| 147 | + | |
| 148 | +@end | |
| 149 | + | |
| 150 | +#pragma mark - 第一级 | |
| 151 | + | |
| 152 | +@interface DSRSInfoModel : NSObject | |
| 153 | + | |
| 154 | +/** | |
| 155 | + 店铺id | |
| 156 | + */ | |
| 157 | +@property (nonatomic,copy) NSString * id; | |
| 158 | +/** | |
| 159 | + 商家id | |
| 160 | + */ | |
| 161 | +@property (nonatomic,copy) NSString * shop_id; | |
| 162 | +/** | |
| 163 | + 浏览量 | |
| 164 | + */ | |
| 165 | +@property (nonatomic,copy) NSString * pv; | |
| 166 | +/** | |
| 167 | + 均价 | |
| 168 | + */ | |
| 169 | +@property (nonatomic,copy) NSString * price; | |
| 170 | +/** | |
| 171 | + 店铺名称 | |
| 172 | + */ | |
| 173 | +@property (nonatomic,copy) NSString * title; | |
| 174 | +/** | |
| 175 | + 店铺logo | |
| 176 | + */ | |
| 177 | +@property (nonatomic,copy) NSString * simg; | |
| 178 | +/** | |
| 179 | + 地址 | |
| 180 | + */ | |
| 181 | +@property (nonatomic,copy) NSString * address; | |
| 182 | +/** | |
| 183 | + 经度 | |
| 184 | + */ | |
| 185 | +@property (nonatomic,copy) NSString * longitude; | |
| 186 | +/** | |
| 187 | + 维度 | |
| 188 | + */ | |
| 189 | +@property (nonatomic,copy) NSString * latitude; | |
| 190 | +/** | |
| 191 | + 手机 | |
| 192 | + */ | |
| 193 | +@property (nonatomic,copy) NSString * phone; | |
| 194 | +/** | |
| 195 | + 配送每日开始时间 | |
| 196 | + */ | |
| 197 | +@property (nonatomic,copy) NSString * starttime; | |
| 198 | +/** | |
| 199 | + 配送每日结束时间 | |
| 200 | + */ | |
| 201 | +@property (nonatomic,copy) NSString * stoptime; | |
| 202 | +/** | |
| 203 | + 是否显示荣誉资质 1显示 0不显示 | |
| 204 | + */ | |
| 205 | +@property (nonatomic,assign) BOOL is_store_content; | |
| 206 | +/** | |
| 207 | + 资质跳转 | |
| 208 | + */ | |
| 209 | +@property (nonatomic,strong) DSRSInfoStoreCommonSkipModel * store_content; | |
| 210 | +/** | |
| 211 | + 总销量 | |
| 212 | + */ | |
| 213 | +@property (nonatomic,copy) NSString * sale_count; | |
| 214 | +/** | |
| 215 | + 配送 | |
| 216 | + */ | |
| 217 | +@property (nonatomic,copy) NSString * delivery; | |
| 218 | +/** | |
| 219 | + 环境图片数组 | |
| 220 | + */ | |
| 221 | +@property (nonatomic,copy) NSArray<NSString*> * address_img; | |
| 222 | +/** | |
| 223 | + 店铺广告 | |
| 224 | + */ | |
| 225 | +@property (nonatomic,copy) NSArray<DSRSInfoShopAdsModel*> * foods_shop_ads; | |
| 226 | +/** | |
| 227 | + 品牌故事 | |
| 228 | + */ | |
| 229 | +@property (nonatomic,strong) DSRSInfoShopModel * shop; | |
| 230 | +/** | |
| 231 | + 优惠券 | |
| 232 | + */ | |
| 233 | +@property (nonatomic,copy) NSArray<DSRSInfoCouponModel*> * coupon; | |
| 234 | +/** | |
| 235 | + 红包 | |
| 236 | + */ | |
| 237 | +@property (nonatomic,copy) NSArray<DSRSInfoRedPacketModel*> * foods_red_packet; | |
| 238 | + | |
| 239 | +#pragma mark - 自己加的 | |
| 240 | + | |
| 241 | +@property (nonatomic,strong) DSRSInfoFirLayout * firLayout; | |
| 242 | + | |
| 243 | +@property (nonatomic,strong) DSRSInfoThiLayout * thiLayout; | |
| 244 | + | |
| 245 | +/** | |
| 246 | + 计算布局 | |
| 247 | + */ | |
| 248 | +-(void)calculateLayout; | |
| 249 | + | |
| 250 | +@end | |
| 251 | + | |
| 252 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoSecStyleTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoSecStyleTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSRSInfoSecStyleTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/12. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import "DSRSInfoModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRSInfoSecStyleTableViewCell : DSTableViewCell | |
| 15 | + | |
| 16 | +#pragma mark - 回调 | |
| 17 | + | |
| 18 | +/** | |
| 19 | + 点击广告回调 | |
| 20 | + */ | |
| 21 | +@property (nonatomic,copy) void (^clickAdsCallBack)(DSRSInfoShopAdsModel * model); | |
| 22 | + | |
| 23 | +#pragma mark - 赋值 | |
| 24 | + | |
| 25 | +@property (nonatomic,strong) DSRSInfoModel * model; | |
| 26 | + | |
| 27 | +@end | |
| 28 | + | |
| 29 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoThiLayout.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoThiLayout.h | |
| 1 | +// | |
| 2 | +// DSRSInfoThiLayout.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/13. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Foundation/Foundation.h> | |
| 10 | +#import <UIKit/UIKit.h> | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRSInfoThiLayout : NSObject | |
| 15 | + | |
| 16 | +@property (nonatomic,assign) CGFloat addressLabHeight; | |
| 17 | +@property (nonatomic,assign) BOOL isHideBottomLine; | |
| 18 | +@property (nonatomic,assign) CGFloat cellHeight; | |
| 19 | + | |
| 20 | +@end | |
| 21 | + | |
| 22 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoThiStylePhotoCollectionViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoThiStylePhotoCollectionViewCell.h | |
| 1 | +// | |
| 2 | +// DSRSInfoThiStylePhotoCollectionViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/13. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRSInfoThiStylePhotoCollectionViewCell : UICollectionViewCell | |
| 14 | + | |
| 15 | +@property (nonatomic,strong) DSImageView * displayImageView; | |
| 16 | + | |
| 17 | +@end | |
| 18 | + | |
| 19 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoThiStyleTableViewCell.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoThiStyleTableViewCell.h | |
| 1 | +// | |
| 2 | +// DSRSInfoThiStyleTableViewCell.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/12. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | +#import "DSRSInfoModel.h" | |
| 11 | + | |
| 12 | +NS_ASSUME_NONNULL_BEGIN | |
| 13 | + | |
| 14 | +@interface DSRSInfoThiStyleTableViewCell : DSTableViewCell | |
| 15 | + | |
| 16 | +@property (nonatomic,strong) DSRSInfoModel * model; | |
| 17 | + | |
| 18 | +@end | |
| 19 | + | |
| 20 | +NS_ASSUME_NONNULL_END | ... | ... |
DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoViewController.h
0 → 100644
| 1 | +++ a/DSRepastModuleF/Frameworks/DSRepastModule.framework/Headers/DSRSInfoViewController.h | |
| 1 | +// | |
| 2 | +// DSRSInfoViewController.h | |
| 3 | +// DSCnliveShopSDK | |
| 4 | +// | |
| 5 | +// Created by zhaolin on 2019/7/9. | |
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <DSBaseModule/DSBaseModule.h> | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@interface DSRSInfoViewController : DSBaseViewController | |
| 14 | + | |
| 15 | +/** | |
| 16 | + 门店id | |
| 17 | + */ | |
| 18 | +@property (nonatomic,copy) NSString * storeId; | |
| 19 | + | |
| 20 | +@end | |
| 21 | + | |
| 22 | +NS_ASSUME_NONNULL_END | ... | ... |