Commit 9714aa24 authored by 曹云霄's avatar 曹云霄

修改首页门店编号输入,opple提供原型图

parent b294026b
//
// ResellerTableViewCell.h
// Lighting
//
// Created by 曹云霄 on 2017/3/6.
// Copyright © 2017年 上海勾芒科技有限公司. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ResellerTableViewCell : UITableViewCell
/**
门店编号
*/
@property (weak, nonatomic) IBOutlet UITextField *resellerTextField;
/**
查看门店编号帮助
*/
@property (nonatomic,copy) void(^storeNumberHelpBlock)();
@end
//
// ResellerTableViewCell.m
// Lighting
//
// Created by 曹云霄 on 2017/3/6.
// Copyright © 2017年 上海勾芒科技有限公司. All rights reserved.
//
#import "ResellerTableViewCell.h"
@implementation ResellerTableViewCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
/**
获取查看门店编号帮助
*/
- (IBAction)storeNumberButtonClick:(UIButton *)sender {
if (self.storeNumberHelpBlock) {
self.storeNumberHelpBlock();
}
}
@end
...@@ -11,8 +11,17 @@ ...@@ -11,8 +11,17 @@
@interface ResellerViewController : BaseViewController @interface ResellerViewController : BaseViewController
/** /**
经销商资料 门店编号
*/ */
@property (weak, nonatomic) IBOutlet UITableView *resellerTableView; @property (weak, nonatomic) IBOutlet UITextField *storeNumberTextField;
@end @end
...@@ -7,10 +7,10 @@ ...@@ -7,10 +7,10 @@
// //
#import "ResellerViewController.h" #import "ResellerViewController.h"
#import "ResellerTableViewCell.h" #import "CustomWKWebViewController.h"
@interface ResellerViewController ()<UITableViewDelegate,UITableViewDataSource,UITextFieldDelegate> @interface ResellerViewController ()<UITextFieldDelegate>
@end @end
...@@ -19,27 +19,20 @@ ...@@ -19,27 +19,20 @@
- (void)viewDidLoad { - (void)viewDidLoad {
[super viewDidLoad]; [super viewDidLoad];
[self uiConfigAction];
}
#pragma mark -UI
- (void)uiConfigAction
{
self.resellerTableView.tableFooterView = [UIView new];
self.title = @"欧普到家门店编号";
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"完成" style:UIBarButtonItemStyleDone target:self action:@selector(modifyResellerInformation)];
self.navigationItem.rightBarButtonItem.enabled = [Shoppersmanager manager].Shoppers.validate;
} }
#pragma mark -保存经销商ID ->验证 #pragma mark -保存经销商ID ->验证
- (void)modifyResellerInformation - (void)modifyResellerInformation
{ {
ResellerTableViewCell *cell = [self.resellerTableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]]; NSString *storeNumber = self.storeNumberTextField.text;
if ([cell.resellerTextField.text isEqualToString:@"无"]) { if ([[self class] isBlankString:storeNumber]) {
[self saveResellerInformation:cell.resellerTextField.text];return; [XBLoadingView showHUDViewWithText:@"输入无效"];return;
}
if ([storeNumber isEqualToString:@"无"]) {
[self saveResellerInformation:storeNumber];return;
} }
//验证 //验证
NSDictionary *dict = @{@"mfcode":cell.resellerTextField.text}; NSDictionary *dict = @{@"mfcode":storeNumber};
[XBLoadingView showHUDViewWithDefault]; [XBLoadingView showHUDViewWithDefault];
WS(weakSelf); WS(weakSelf);
[HTTP networkWithDictionaryRequestWithURL:RESELLER withRequestType:NetworkRequestWithGET withParameter:dict withReturnValueBlock:^(id returnValue) { [HTTP networkWithDictionaryRequestWithURL:RESELLER withRequestType:NetworkRequestWithGET withParameter:dict withReturnValueBlock:^(id returnValue) {
...@@ -47,7 +40,7 @@ ...@@ -47,7 +40,7 @@
[XBLoadingView hideHUDViewWithDefault]; [XBLoadingView hideHUDViewWithDefault];
if ([returnValue[@"code"] isEqualToString:@"1"]) { if ([returnValue[@"code"] isEqualToString:@"1"]) {
[XBLoadingView showHUDViewWithSuccessText:@"验证成功" completeBlock:^{ [XBLoadingView showHUDViewWithSuccessText:@"验证成功" completeBlock:^{
[weakSelf saveResellerInformation:cell.resellerTextField.text]; [weakSelf saveResellerInformation:storeNumber];
}]; }];
}else { }else {
[XBLoadingView showHUDViewWithText:returnValue[@"msg"]]; [XBLoadingView showHUDViewWithText:returnValue[@"msg"]];
...@@ -84,38 +77,40 @@ ...@@ -84,38 +77,40 @@
}]; }];
} }
#pragma mark -<UITableViewDelegate,UITableViewDataSource>
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath #pragma mark -帮助按钮
{ - (IBAction)helpButtonClickAction:(UIButton *)sender {
ResellerTableViewCell *resellerCell = [tableView dequeueReusableCellWithIdentifier:@"ResellerTableViewCell" forIndexPath:indexPath];
resellerCell.resellerTextField.delegate = self;
WS(weakSelf);
[resellerCell setStoreNumberHelpBlock:^{
NSLog(@"获取帮助");
}];
return resellerCell;
}
#pragma mark -结束编辑 CustomWKWebViewController *webView = [[CustomWKWebViewController alloc] init];
- (BOOL)textFieldShouldEndEditing:(UITextField *)textField webView.type = Image;
{ webView.urlString = [[NSBundle mainBundle] pathForResource:@"reference" ofType:@"png"];
if ([[self class] isBlankString:textField.text]) { [self presentViewController:webView animated:YES completion:nil];
return NO;
}
self.navigationItem.rightBarButtonItem.enabled = YES;
return YES;
} }
#pragma mark -结束编辑
- (void)textFieldDidEndEditing:(UITextField *)textField #pragma mark -确认按钮
{ - (IBAction)sureButtonClickAction:(UIButton *)sender {
BOOL boolValue = ![[self class] isBlankString:textField.text];
self.navigationItem.rightBarButtonItem.enabled = boolValue; [self.storeNumberTextField resignFirstResponder];
[self modifyResellerInformation];
} }
@end @end
...@@ -55,6 +55,8 @@ ...@@ -55,6 +55,8 @@
293163FA1DCE3CBA0075129D /* LuckyDrawDetailsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 293163F91DCE3CBA0075129D /* LuckyDrawDetailsViewController.m */; }; 293163FA1DCE3CBA0075129D /* LuckyDrawDetailsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 293163F91DCE3CBA0075129D /* LuckyDrawDetailsViewController.m */; };
293164001DCE3F6D0075129D /* NotDrawTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 293163FF1DCE3F6D0075129D /* NotDrawTableViewCell.m */; }; 293164001DCE3F6D0075129D /* NotDrawTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 293163FF1DCE3F6D0075129D /* NotDrawTableViewCell.m */; };
293164031DCE3F780075129D /* UsedDrawTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 293164021DCE3F780075129D /* UsedDrawTableViewCell.m */; }; 293164031DCE3F780075129D /* UsedDrawTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 293164021DCE3F780075129D /* UsedDrawTableViewCell.m */; };
293221501E6F9F1B00DD4980 /* XYTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2932214F1E6F9F1B00DD4980 /* XYTextField.m */; };
293221531E6FA20D00DD4980 /* reference.png in Resources */ = {isa = PBXBuildFile; fileRef = 293221521E6FA20D00DD4980 /* reference.png */; };
2933934F1CD3158B000D997B /* instructionsLabe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2933934E1CD3158B000D997B /* instructionsLabe.m */; }; 2933934F1CD3158B000D997B /* instructionsLabe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2933934E1CD3158B000D997B /* instructionsLabe.m */; };
293393551CD3379E000D997B /* ShoppingTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 293393541CD3379E000D997B /* ShoppingTableViewCell.m */; }; 293393551CD3379E000D997B /* ShoppingTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 293393541CD3379E000D997B /* ShoppingTableViewCell.m */; };
29360C2F1CDDC47E002A5D89 /* ScreeningView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29360C2E1CDDC47E002A5D89 /* ScreeningView.m */; }; 29360C2F1CDDC47E002A5D89 /* ScreeningView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29360C2E1CDDC47E002A5D89 /* ScreeningView.m */; };
...@@ -83,7 +85,6 @@ ...@@ -83,7 +85,6 @@
2949BABD1CD2EFA00049385A /* InformationTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2949BABC1CD2EFA00049385A /* InformationTableViewCell.m */; }; 2949BABD1CD2EFA00049385A /* InformationTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2949BABC1CD2EFA00049385A /* InformationTableViewCell.m */; };
2949BAC21CD3055A0049385A /* MMExampleDrawerVisualStateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2949BAC11CD3055A0049385A /* MMExampleDrawerVisualStateManager.m */; }; 2949BAC21CD3055A0049385A /* MMExampleDrawerVisualStateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2949BAC11CD3055A0049385A /* MMExampleDrawerVisualStateManager.m */; };
294B86D11E6D2B04004E2D0F /* ResellerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 294B86D01E6D2B04004E2D0F /* ResellerViewController.m */; }; 294B86D11E6D2B04004E2D0F /* ResellerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 294B86D01E6D2B04004E2D0F /* ResellerViewController.m */; };
294B86D41E6D2B17004E2D0F /* ResellerTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 294B86D31E6D2B17004E2D0F /* ResellerTableViewCell.m */; };
294B86D71E6D46EA004E2D0F /* CommentTagTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 294B86D61E6D46E9004E2D0F /* CommentTagTableViewCell.m */; }; 294B86D71E6D46EA004E2D0F /* CommentTagTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 294B86D61E6D46E9004E2D0F /* CommentTagTableViewCell.m */; };
294B86DA1E6D5828004E2D0F /* ThroughHistoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 294B86D91E6D5828004E2D0F /* ThroughHistoryViewController.m */; }; 294B86DA1E6D5828004E2D0F /* ThroughHistoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 294B86D91E6D5828004E2D0F /* ThroughHistoryViewController.m */; };
294BFDD11D47225A00BFD53F /* OppleMain.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 294BFDD01D47225A00BFD53F /* OppleMain.storyboard */; }; 294BFDD11D47225A00BFD53F /* OppleMain.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 294BFDD01D47225A00BFD53F /* OppleMain.storyboard */; };
...@@ -399,6 +400,9 @@ ...@@ -399,6 +400,9 @@
293163FF1DCE3F6D0075129D /* NotDrawTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NotDrawTableViewCell.m; sourceTree = "<group>"; }; 293163FF1DCE3F6D0075129D /* NotDrawTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NotDrawTableViewCell.m; sourceTree = "<group>"; };
293164011DCE3F780075129D /* UsedDrawTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsedDrawTableViewCell.h; sourceTree = "<group>"; }; 293164011DCE3F780075129D /* UsedDrawTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UsedDrawTableViewCell.h; sourceTree = "<group>"; };
293164021DCE3F780075129D /* UsedDrawTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UsedDrawTableViewCell.m; sourceTree = "<group>"; }; 293164021DCE3F780075129D /* UsedDrawTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UsedDrawTableViewCell.m; sourceTree = "<group>"; };
2932214E1E6F9F1B00DD4980 /* XYTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYTextField.h; sourceTree = "<group>"; };
2932214F1E6F9F1B00DD4980 /* XYTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYTextField.m; sourceTree = "<group>"; };
293221521E6FA20D00DD4980 /* reference.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = reference.png; sourceTree = "<group>"; };
2933934D1CD3158B000D997B /* instructionsLabe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = instructionsLabe.h; sourceTree = "<group>"; }; 2933934D1CD3158B000D997B /* instructionsLabe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = instructionsLabe.h; sourceTree = "<group>"; };
2933934E1CD3158B000D997B /* instructionsLabe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = instructionsLabe.m; sourceTree = "<group>"; }; 2933934E1CD3158B000D997B /* instructionsLabe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = instructionsLabe.m; sourceTree = "<group>"; };
293393531CD3379E000D997B /* ShoppingTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShoppingTableViewCell.h; sourceTree = "<group>"; }; 293393531CD3379E000D997B /* ShoppingTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShoppingTableViewCell.h; sourceTree = "<group>"; };
...@@ -453,8 +457,6 @@ ...@@ -453,8 +457,6 @@
2949BAC11CD3055A0049385A /* MMExampleDrawerVisualStateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMExampleDrawerVisualStateManager.m; sourceTree = "<group>"; }; 2949BAC11CD3055A0049385A /* MMExampleDrawerVisualStateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMExampleDrawerVisualStateManager.m; sourceTree = "<group>"; };
294B86CF1E6D2B04004E2D0F /* ResellerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResellerViewController.h; sourceTree = "<group>"; }; 294B86CF1E6D2B04004E2D0F /* ResellerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResellerViewController.h; sourceTree = "<group>"; };
294B86D01E6D2B04004E2D0F /* ResellerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResellerViewController.m; sourceTree = "<group>"; }; 294B86D01E6D2B04004E2D0F /* ResellerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResellerViewController.m; sourceTree = "<group>"; };
294B86D21E6D2B17004E2D0F /* ResellerTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResellerTableViewCell.h; sourceTree = "<group>"; };
294B86D31E6D2B17004E2D0F /* ResellerTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResellerTableViewCell.m; sourceTree = "<group>"; };
294B86D51E6D46E9004E2D0F /* CommentTagTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommentTagTableViewCell.h; sourceTree = "<group>"; }; 294B86D51E6D46E9004E2D0F /* CommentTagTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommentTagTableViewCell.h; sourceTree = "<group>"; };
294B86D61E6D46E9004E2D0F /* CommentTagTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommentTagTableViewCell.m; sourceTree = "<group>"; }; 294B86D61E6D46E9004E2D0F /* CommentTagTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommentTagTableViewCell.m; sourceTree = "<group>"; };
294B86D81E6D5828004E2D0F /* ThroughHistoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThroughHistoryViewController.h; sourceTree = "<group>"; }; 294B86D81E6D5828004E2D0F /* ThroughHistoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThroughHistoryViewController.h; sourceTree = "<group>"; };
...@@ -1101,6 +1103,7 @@ ...@@ -1101,6 +1103,7 @@
2928F7DE1CD085430036D761 /* Tools */ = { 2928F7DE1CD085430036D761 /* Tools */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
293221511E6FA1F900DD4980 /* Resource */,
2985345D1DD4B0100023BBAE /* AirPrint */, 2985345D1DD4B0100023BBAE /* AirPrint */,
29C4C2471E14BFA20093B100 /* AnaimationImageView */, 29C4C2471E14BFA20093B100 /* AnaimationImageView */,
2972312F1E0948BE00D8CA9B /* Bank */, 2972312F1E0948BE00D8CA9B /* Bank */,
...@@ -1149,6 +1152,8 @@ ...@@ -1149,6 +1152,8 @@
children = ( children = (
2928F7E51CD087FE0036D761 /* BaseViewController.h */, 2928F7E51CD087FE0036D761 /* BaseViewController.h */,
2928F7E61CD087FE0036D761 /* BaseViewController.m */, 2928F7E61CD087FE0036D761 /* BaseViewController.m */,
2932214E1E6F9F1B00DD4980 /* XYTextField.h */,
2932214F1E6F9F1B00DD4980 /* XYTextField.m */,
); );
path = parentclass; path = parentclass;
sourceTree = "<group>"; sourceTree = "<group>";
...@@ -1204,6 +1209,14 @@ ...@@ -1204,6 +1209,14 @@
path = Cells; path = Cells;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
293221511E6FA1F900DD4980 /* Resource */ = {
isa = PBXGroup;
children = (
293221521E6FA20D00DD4980 /* reference.png */,
);
path = Resource;
sourceTree = "<group>";
};
293393501CD329EC000D997B /* controller */ = { 293393501CD329EC000D997B /* controller */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
...@@ -1314,21 +1327,11 @@ ...@@ -1314,21 +1327,11 @@
294B86C91E6D2AA2004E2D0F /* Reseller */ = { 294B86C91E6D2AA2004E2D0F /* Reseller */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
294B86CD1E6D2AF9004E2D0F /* Cell */,
294B86CE1E6D2AF9004E2D0F /* Controller */, 294B86CE1E6D2AF9004E2D0F /* Controller */,
); );
path = Reseller; path = Reseller;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
294B86CD1E6D2AF9004E2D0F /* Cell */ = {
isa = PBXGroup;
children = (
294B86D21E6D2B17004E2D0F /* ResellerTableViewCell.h */,
294B86D31E6D2B17004E2D0F /* ResellerTableViewCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
294B86CE1E6D2AF9004E2D0F /* Controller */ = { 294B86CE1E6D2AF9004E2D0F /* Controller */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
...@@ -2738,6 +2741,7 @@ ...@@ -2738,6 +2741,7 @@
29EAAEAC1CDCA28300C4DBA2 /* city.json in Resources */, 29EAAEAC1CDCA28300C4DBA2 /* city.json in Resources */,
29834EC61CDF76C1001A484F /* UserViewController.xib in Resources */, 29834EC61CDF76C1001A484F /* UserViewController.xib in Resources */,
299C7F5B1CE21FA800E7D7CB /* AddressViewController.xib in Resources */, 299C7F5B1CE21FA800E7D7CB /* AddressViewController.xib in Resources */,
293221531E6FA20D00DD4980 /* reference.png in Resources */,
29706DB41CD082990003C412 /* Assets.xcassets in Resources */, 29706DB41CD082990003C412 /* Assets.xcassets in Resources */,
291A37791DBA58D700299F0D /* GetJDCardView.xib in Resources */, 291A37791DBA58D700299F0D /* GetJDCardView.xib in Resources */,
29EC331B1CE023D5005F0C13 /* ChangePasswordViewController.xib in Resources */, 29EC331B1CE023D5005F0C13 /* ChangePasswordViewController.xib in Resources */,
...@@ -2915,6 +2919,7 @@ ...@@ -2915,6 +2919,7 @@
29698D611CE2C11500D72CE7 /* SettlementViewController.m in Sources */, 29698D611CE2C11500D72CE7 /* SettlementViewController.m in Sources */,
29498C5D1D053B2C004FA79B /* ShoppingBagViewController.m in Sources */, 29498C5D1D053B2C004FA79B /* ShoppingBagViewController.m in Sources */,
291D6A5C1CFFDCCA007891AE /* SceneListModel.m in Sources */, 291D6A5C1CFFDCCA007891AE /* SceneListModel.m in Sources */,
293221501E6F9F1B00DD4980 /* XYTextField.m in Sources */,
299876331CD997DF00C90D0A /* OrderInformationTableViewCell.m in Sources */, 299876331CD997DF00C90D0A /* OrderInformationTableViewCell.m in Sources */,
29837B5E1DE5A3D3009CF614 /* ScreeningButton.m in Sources */, 29837B5E1DE5A3D3009CF614 /* ScreeningButton.m in Sources */,
29E9443D1DE3E0D0007CD26C /* prizeDetailsTableViewCell.m in Sources */, 29E9443D1DE3E0D0007CD26C /* prizeDetailsTableViewCell.m in Sources */,
...@@ -3078,7 +3083,6 @@ ...@@ -3078,7 +3083,6 @@
29E28CE81CE0B91B00812A55 /* HENLENSONG.m in Sources */, 29E28CE81CE0B91B00812A55 /* HENLENSONG.m in Sources */,
299249441CDB51B100786B1E /* ModifyShippingAddressView.m in Sources */, 299249441CDB51B100786B1E /* ModifyShippingAddressView.m in Sources */,
29E9445F1DE455AC007CD26C /* PrizeExchangeInformationTableViewCell.m in Sources */, 29E9445F1DE455AC007CD26C /* PrizeExchangeInformationTableViewCell.m in Sources */,
294B86D41E6D2B17004E2D0F /* ResellerTableViewCell.m in Sources */,
298111161DFE6E5000F7EAFF /* NSDate+Formatting.m in Sources */, 298111161DFE6E5000F7EAFF /* NSDate+Formatting.m in Sources */,
29B78C0F1DFA8B3700C7C6D8 /* ContentTableViewCell.m in Sources */, 29B78C0F1DFA8B3700C7C6D8 /* ContentTableViewCell.m in Sources */,
29B78C181DFA982000C7C6D8 /* PhotoManagerCollectionViewCell.m in Sources */, 29B78C181DFA982000C7C6D8 /* PhotoManagerCollectionViewCell.m in Sources */,
......
...@@ -219,7 +219,7 @@ ...@@ -219,7 +219,7 @@
<rect key="frame" x="0.0" y="28" width="984" height="100"/> <rect key="frame" x="0.0" y="28" width="984" height="100"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="NV8-I4-ig4" id="E0m-wU-1b5"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="NV8-I4-ig4" id="E0m-wU-1b5">
<rect key="frame" x="0.0" y="0.0" width="984" height="99"/> <rect key="frame" x="0.0" y="0.0" width="984" height="99.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="05产品库-详情_03" translatesAutoresizingMaskIntoConstraints="NO" id="F66-vh-va3"> <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="05产品库-详情_03" translatesAutoresizingMaskIntoConstraints="NO" id="F66-vh-va3">
...@@ -611,10 +611,10 @@ ...@@ -611,10 +611,10 @@
<color key="backgroundColor" cocoaTouchSystemColor="groupTableViewBackgroundColor"/> <color key="backgroundColor" cocoaTouchSystemColor="groupTableViewBackgroundColor"/>
<prototypes> <prototypes>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="firstcell" rowHeight="84" id="XgA-9w-ut9" customClass="OrderInformationTableViewCell"> <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="firstcell" rowHeight="84" id="XgA-9w-ut9" customClass="OrderInformationTableViewCell">
<rect key="frame" x="0.0" y="56" width="1024" height="84"/> <rect key="frame" x="0.0" y="55.5" width="1024" height="84"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="XgA-9w-ut9" id="BWi-jv-OOH"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="XgA-9w-ut9" id="BWi-jv-OOH">
<rect key="frame" x="0.0" y="0.0" width="1024" height="83"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="83.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="订单编号:" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="KGm-XJ-NyV"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="订单编号:" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="KGm-XJ-NyV">
...@@ -694,10 +694,10 @@ ...@@ -694,10 +694,10 @@
</connections> </connections>
</tableViewCell> </tableViewCell>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="secondcell" rowHeight="110" id="rIO-yd-hh7" customClass="PersonInformationTableViewCell"> <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="secondcell" rowHeight="110" id="rIO-yd-hh7" customClass="PersonInformationTableViewCell">
<rect key="frame" x="0.0" y="140" width="1024" height="110"/> <rect key="frame" x="0.0" y="139.5" width="1024" height="110"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rIO-yd-hh7" id="mn8-g0-Zqo"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rIO-yd-hh7" id="mn8-g0-Zqo">
<rect key="frame" x="0.0" y="0.0" width="1024" height="109"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="109.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="05产品库-详情_03" translatesAutoresizingMaskIntoConstraints="NO" id="Zdg-s0-xfD"> <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="05产品库-详情_03" translatesAutoresizingMaskIntoConstraints="NO" id="Zdg-s0-xfD">
...@@ -786,10 +786,10 @@ ...@@ -786,10 +786,10 @@
</connections> </connections>
</tableViewCell> </tableViewCell>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="thirdcell" rowHeight="84" id="PfN-24-v5t" customClass="GoodsInformationTableViewCell"> <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="thirdcell" rowHeight="84" id="PfN-24-v5t" customClass="GoodsInformationTableViewCell">
<rect key="frame" x="0.0" y="250" width="1024" height="84"/> <rect key="frame" x="0.0" y="249.5" width="1024" height="84"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="PfN-24-v5t" id="2Je-94-WVY"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="PfN-24-v5t" id="2Je-94-WVY">
<rect key="frame" x="0.0" y="0.0" width="1024" height="83"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="83.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="收货人:" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tiK-JC-Jy4"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="收货人:" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tiK-JC-Jy4">
...@@ -851,10 +851,10 @@ ...@@ -851,10 +851,10 @@
</connections> </connections>
</tableViewCell> </tableViewCell>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="fourthcell" rowHeight="80" id="47T-H0-tG7" customClass="CommodityListTableViewCell"> <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="fourthcell" rowHeight="80" id="47T-H0-tG7" customClass="CommodityListTableViewCell">
<rect key="frame" x="0.0" y="334" width="1024" height="80"/> <rect key="frame" x="0.0" y="333.5" width="1024" height="80"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="47T-H0-tG7" id="zXR-bC-Wdh"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="47T-H0-tG7" id="zXR-bC-Wdh">
<rect key="frame" x="0.0" y="0.0" width="1024" height="79"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="79.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="05产品库-详情_03" translatesAutoresizingMaskIntoConstraints="NO" id="6MS-gq-TMk"> <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="05产品库-详情_03" translatesAutoresizingMaskIntoConstraints="NO" id="6MS-gq-TMk">
...@@ -937,10 +937,10 @@ ...@@ -937,10 +937,10 @@
</connections> </connections>
</tableViewCell> </tableViewCell>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="sixthcell" rowHeight="50" id="PNT-Fy-4Hi" customClass="AllpriceTableViewCell"> <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="sixthcell" rowHeight="50" id="PNT-Fy-4Hi" customClass="AllpriceTableViewCell">
<rect key="frame" x="0.0" y="414" width="1024" height="50"/> <rect key="frame" x="0.0" y="413.5" width="1024" height="50"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="PNT-Fy-4Hi" id="PxE-0c-Zdt"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="PNT-Fy-4Hi" id="PxE-0c-Zdt">
<rect key="frame" x="0.0" y="0.0" width="1024" height="49"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="49.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="总计:" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ywx-T1-GlW"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="总计:" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ywx-T1-GlW">
...@@ -985,10 +985,10 @@ ...@@ -985,10 +985,10 @@
</connections> </connections>
</tableViewCell> </tableViewCell>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="OrderDetailsSectionHeaderView" rowHeight="60" id="93R-pm-DiM" customClass="OrderDetailsSectionHeaderView"> <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="OrderDetailsSectionHeaderView" rowHeight="60" id="93R-pm-DiM" customClass="OrderDetailsSectionHeaderView">
<rect key="frame" x="0.0" y="464" width="1024" height="60"/> <rect key="frame" x="0.0" y="463.5" width="1024" height="60"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="93R-pm-DiM" id="ps4-EA-igT"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="93R-pm-DiM" id="ps4-EA-igT">
<rect key="frame" x="0.0" y="0.0" width="1024" height="59"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="59.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="7rk-Gz-d7W"> <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="7rk-Gz-d7W">
...@@ -1022,10 +1022,10 @@ ...@@ -1022,10 +1022,10 @@
</connections> </connections>
</tableViewCell> </tableViewCell>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" accessoryType="checkmark" indentationWidth="10" reuseIdentifier="PromotionalTableViewCell" rowHeight="44" id="R0y-9Q-NEJ" customClass="PromotionalTableViewCell"> <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" accessoryType="checkmark" indentationWidth="10" reuseIdentifier="PromotionalTableViewCell" rowHeight="44" id="R0y-9Q-NEJ" customClass="PromotionalTableViewCell">
<rect key="frame" x="0.0" y="524" width="1024" height="44"/> <rect key="frame" x="0.0" y="523.5" width="1024" height="44"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="R0y-9Q-NEJ" id="tLA-TB-cwT"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="R0y-9Q-NEJ" id="tLA-TB-cwT">
<rect key="frame" x="0.0" y="0.0" width="824" height="43"/> <rect key="frame" x="0.0" y="0.0" width="824" height="43.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="折扣金额" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iOu-WG-fyV"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="折扣金额" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iOu-WG-fyV">
...@@ -1286,10 +1286,10 @@ ...@@ -1286,10 +1286,10 @@
<color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<prototypes> <prototypes>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="productDetailscell" rowHeight="182" id="Sye-2R-IQf" customClass="ProductDetailsTableViewCell"> <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="productDetailscell" rowHeight="182" id="Sye-2R-IQf" customClass="ProductDetailsTableViewCell">
<rect key="frame" x="0.0" y="56" width="1024" height="182"/> <rect key="frame" x="0.0" y="55.5" width="1024" height="182"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Sye-2R-IQf" id="CXs-SR-gHP"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Sye-2R-IQf" id="CXs-SR-gHP">
<rect key="frame" x="0.0" y="0.0" width="1024" height="181"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="181.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="2bG-Ip-ptr" userLabel="View1"> <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="2bG-Ip-ptr" userLabel="View1">
...@@ -1683,7 +1683,7 @@ ...@@ -1683,7 +1683,7 @@
<rect key="frame" x="0.0" y="28" width="1024" height="100"/> <rect key="frame" x="0.0" y="28" width="1024" height="100"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="EPc-Ii-VaY" id="e8t-Pc-QPv"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="EPc-Ii-VaY" id="e8t-Pc-QPv">
<rect key="frame" x="0.0" y="0.0" width="1024" height="99"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="99.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="05产品库-详情_03" translatesAutoresizingMaskIntoConstraints="NO" id="S6q-gC-tBB"> <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="05产品库-详情_03" translatesAutoresizingMaskIntoConstraints="NO" id="S6q-gC-tBB">
...@@ -1848,7 +1848,7 @@ ...@@ -1848,7 +1848,7 @@
<rect key="frame" x="0.0" y="28" width="1024" height="200"/> <rect key="frame" x="0.0" y="28" width="1024" height="200"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="0Oq-z4-T96" id="GEp-Hp-EdS"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="0Oq-z4-T96" id="GEp-Hp-EdS">
<rect key="frame" x="0.0" y="0.0" width="1024" height="199"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="199.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="下单时间:" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wXj-VY-jlJ"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="下单时间:" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wXj-VY-jlJ">
...@@ -2226,7 +2226,7 @@ ...@@ -2226,7 +2226,7 @@
<rect key="frame" x="0.0" y="28" width="984" height="80"/> <rect key="frame" x="0.0" y="28" width="984" height="80"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ZT1-XJ-ObI" id="GWp-Jl-7br"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ZT1-XJ-ObI" id="GWp-Jl-7br">
<rect key="frame" x="0.0" y="0.0" width="984" height="79"/> <rect key="frame" x="0.0" y="0.0" width="984" height="79.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="PkJ-eJ-ksY"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="PkJ-eJ-ksY">
...@@ -2552,7 +2552,7 @@ ...@@ -2552,7 +2552,7 @@
<rect key="frame" x="0.0" y="28" width="1024" height="110"/> <rect key="frame" x="0.0" y="28" width="1024" height="110"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LsY-i0-h5H" id="dPG-p9-V2i"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LsY-i0-h5H" id="dPG-p9-V2i">
<rect key="frame" x="0.0" y="0.0" width="1024" height="109"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="109.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="05产品库-详情_03" translatesAutoresizingMaskIntoConstraints="NO" id="qWT-p0-Gta"> <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="05产品库-详情_03" translatesAutoresizingMaskIntoConstraints="NO" id="qWT-p0-Gta">
...@@ -2644,7 +2644,7 @@ ...@@ -2644,7 +2644,7 @@
<rect key="frame" x="0.0" y="138" width="1024" height="56"/> <rect key="frame" x="0.0" y="138" width="1024" height="56"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gfQ-UE-mXV" id="za6-HU-VEw"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gfQ-UE-mXV" id="za6-HU-VEw">
<rect key="frame" x="0.0" y="0.0" width="1024" height="55"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="55.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="手机号码:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="X0Z-8j-BdI"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="手机号码:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="X0Z-8j-BdI">
...@@ -2725,7 +2725,7 @@ ...@@ -2725,7 +2725,7 @@
<rect key="frame" x="0.0" y="194" width="1024" height="70"/> <rect key="frame" x="0.0" y="194" width="1024" height="70"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Kk4-Fh-HhL" id="oRX-7p-HkY"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Kk4-Fh-HhL" id="oRX-7p-HkY">
<rect key="frame" x="0.0" y="0.0" width="1024" height="69"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="69.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="m0f-EW-LM5"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="m0f-EW-LM5">
...@@ -2777,7 +2777,7 @@ ...@@ -2777,7 +2777,7 @@
<rect key="frame" x="0.0" y="264" width="1024" height="80"/> <rect key="frame" x="0.0" y="264" width="1024" height="80"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="G7o-xS-1mB" id="l3e-TL-GCT"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="G7o-xS-1mB" id="l3e-TL-GCT">
<rect key="frame" x="0.0" y="0.0" width="1024" height="79"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="79.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="05产品库-详情_03" translatesAutoresizingMaskIntoConstraints="NO" id="Un4-g0-sG6"> <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="05产品库-详情_03" translatesAutoresizingMaskIntoConstraints="NO" id="Un4-g0-sG6">
...@@ -2863,7 +2863,7 @@ ...@@ -2863,7 +2863,7 @@
<rect key="frame" x="0.0" y="344" width="1024" height="50"/> <rect key="frame" x="0.0" y="344" width="1024" height="50"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6K9-mc-7RW" id="Vc7-f6-wGb"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6K9-mc-7RW" id="Vc7-f6-wGb">
<rect key="frame" x="0.0" y="0.0" width="1024" height="49"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="49.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="总数量:" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ULe-0J-pCd"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="总数量:" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ULe-0J-pCd">
...@@ -3751,7 +3751,7 @@ ...@@ -3751,7 +3751,7 @@
<rect key="frame" x="0.0" y="28" width="1024" height="70"/> <rect key="frame" x="0.0" y="28" width="1024" height="70"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="X3v-Ll-1MC" id="900-Pd-b1F"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="X3v-Ll-1MC" id="900-Pd-b1F">
<rect key="frame" x="0.0" y="0.0" width="1024" height="69"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="69.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="订单编号:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="TMg-8t-PNg"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="订单编号:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="TMg-8t-PNg">
...@@ -3797,7 +3797,7 @@ ...@@ -3797,7 +3797,7 @@
<rect key="frame" x="0.0" y="98" width="1024" height="70"/> <rect key="frame" x="0.0" y="98" width="1024" height="70"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="7NE-I0-E9m" id="6dy-h1-Du5"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="7NE-I0-E9m" id="6dy-h1-Du5">
<rect key="frame" x="0.0" y="0.0" width="1024" height="69"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="69.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="订单编号:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mCP-hd-n1N"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="订单编号:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mCP-hd-n1N">
...@@ -4177,7 +4177,7 @@ ...@@ -4177,7 +4177,7 @@
<rect key="frame" x="0.0" y="28" width="1024" height="70"/> <rect key="frame" x="0.0" y="28" width="1024" height="70"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ycT-hi-XMt" id="kgy-QA-YB7"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ycT-hi-XMt" id="kgy-QA-YB7">
<rect key="frame" x="0.0" y="0.0" width="1024" height="69"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="69.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="撒大声地" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="IgV-UM-cUZ"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="撒大声地" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="IgV-UM-cUZ">
...@@ -4252,7 +4252,7 @@ ...@@ -4252,7 +4252,7 @@
<rect key="frame" x="0.0" y="0.0" width="1024" height="126"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="126"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="hkV-sz-e6I" id="376-dL-SGZ"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="hkV-sz-e6I" id="376-dL-SGZ">
<rect key="frame" x="0.0" y="0.0" width="1024" height="125"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="125.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="交易成功" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bj2-3f-d1N"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="交易成功" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bj2-3f-d1N">
...@@ -4280,7 +4280,7 @@ ...@@ -4280,7 +4280,7 @@
<rect key="frame" x="0.0" y="126" width="1024" height="150"/> <rect key="frame" x="0.0" y="126" width="1024" height="150"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="omi-89-fSM" id="kHX-8W-6YZ"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="omi-89-fSM" id="kHX-8W-6YZ">
<rect key="frame" x="0.0" y="0.0" width="1024" height="149"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="149.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="类型" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="WvF-Vp-w7I"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="类型" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="WvF-Vp-w7I">
...@@ -4392,7 +4392,7 @@ ...@@ -4392,7 +4392,7 @@
<rect key="frame" x="0.0" y="28" width="1024" height="70"/> <rect key="frame" x="0.0" y="28" width="1024" height="70"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jHf-PW-bB3" id="GzY-E9-F2n"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jHf-PW-bB3" id="GzY-E9-F2n">
<rect key="frame" x="0.0" y="0.0" width="1024" height="69"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="69.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="进度:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ssz-VZ-85R"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="进度:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ssz-VZ-85R">
...@@ -4476,7 +4476,7 @@ ...@@ -4476,7 +4476,7 @@
<rect key="frame" x="0.0" y="0.0" width="1024" height="216"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="216"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="1Gh-Ht-hTc" id="uun-nY-hTG"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="1Gh-Ht-hTc" id="uun-nY-hTG">
<rect key="frame" x="0.0" y="0.0" width="1024" height="215"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="215.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="progress" translatesAutoresizingMaskIntoConstraints="NO" id="mQZ-vP-Ej3"> <imageView userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="progress" translatesAutoresizingMaskIntoConstraints="NO" id="mQZ-vP-Ej3">
...@@ -4538,7 +4538,7 @@ ...@@ -4538,7 +4538,7 @@
<rect key="frame" x="0.0" y="216" width="1024" height="100"/> <rect key="frame" x="0.0" y="216" width="1024" height="100"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="odb-Qv-xvv" id="vVJ-L8-CP8"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="odb-Qv-xvv" id="vVJ-L8-CP8">
<rect key="frame" x="0.0" y="0.0" width="1024" height="99"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="99.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="金额" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cQu-pj-zGP"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="金额" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cQu-pj-zGP">
...@@ -5316,24 +5316,6 @@ ...@@ -5316,24 +5316,6 @@
</objects> </objects>
<point key="canvasLocation" x="1784" y="6328"/> <point key="canvasLocation" x="1784" y="6328"/>
</scene> </scene>
<!--View Controller-->
<scene sceneID="wMg-Rs-wGE">
<objects>
<viewController id="eUU-Qm-djh" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="GLH-eU-WUE"/>
<viewControllerLayoutGuide type="bottom" id="HAi-e2-khf"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="iSr-lQ-Wmo">
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="GN3-M4-Hr7" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="1769" y="7177"/>
</scene>
<!--Customer Order View Controller--> <!--Customer Order View Controller-->
<scene sceneID="G7U-2L-CVg"> <scene sceneID="G7U-2L-CVg">
<objects> <objects>
...@@ -6473,10 +6455,10 @@ ...@@ -6473,10 +6455,10 @@
<color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<prototypes> <prototypes>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="RightControlTableViewCell" rowHeight="60" id="0wm-zc-Jqc" customClass="RightControlTableViewCell"> <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="RightControlTableViewCell" rowHeight="60" id="0wm-zc-Jqc" customClass="RightControlTableViewCell">
<rect key="frame" x="0.0" y="56" width="200" height="60"/> <rect key="frame" x="0.0" y="55.5" width="200" height="60"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="0wm-zc-Jqc" id="p9s-UH-PIl"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="0wm-zc-Jqc" id="p9s-UH-PIl">
<rect key="frame" x="0.0" y="0.0" width="200" height="59"/> <rect key="frame" x="0.0" y="0.0" width="200" height="59.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="体验中心" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ima-L1-WqA"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="体验中心" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ima-L1-WqA">
...@@ -6738,7 +6720,7 @@ ...@@ -6738,7 +6720,7 @@
<rect key="frame" x="0.0" y="28" width="754" height="80"/> <rect key="frame" x="0.0" y="28" width="754" height="80"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="g2L-9g-KsS" id="XPi-Zc-aGh"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="g2L-9g-KsS" id="XPi-Zc-aGh">
<rect key="frame" x="0.0" y="0.0" width="754" height="79"/> <rect key="frame" x="0.0" y="0.0" width="754" height="79.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="34f-aR-0gw"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="34f-aR-0gw">
...@@ -7131,7 +7113,7 @@ ...@@ -7131,7 +7113,7 @@
<rect key="frame" x="0.0" y="28" width="1024" height="44"/> <rect key="frame" x="0.0" y="28" width="1024" height="44"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="5vC-JB-WSk" id="XVj-PN-Pxx"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="5vC-JB-WSk" id="XVj-PN-Pxx">
<rect key="frame" x="0.0" y="0.0" width="1024" height="43"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="43.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
</tableViewCellContentView> </tableViewCellContentView>
</tableViewCell> </tableViewCell>
...@@ -7205,10 +7187,10 @@ ...@@ -7205,10 +7187,10 @@
<color key="backgroundColor" cocoaTouchSystemColor="groupTableViewBackgroundColor"/> <color key="backgroundColor" cocoaTouchSystemColor="groupTableViewBackgroundColor"/>
<prototypes> <prototypes>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="PerfectInformationTableViewCell" id="NgP-vL-jeV" customClass="PerfectInformationTableViewCell"> <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="PerfectInformationTableViewCell" id="NgP-vL-jeV" customClass="PerfectInformationTableViewCell">
<rect key="frame" x="0.0" y="56" width="500" height="44"/> <rect key="frame" x="0.0" y="55.5" width="500" height="44"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="NgP-vL-jeV" id="yrV-b3-w7O"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="NgP-vL-jeV" id="yrV-b3-w7O">
<rect key="frame" x="0.0" y="0.0" width="500" height="43"/> <rect key="frame" x="0.0" y="0.0" width="500" height="43.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="姓名:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5g0-KC-KrO"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="姓名:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5g0-KC-KrO">
...@@ -7274,80 +7256,97 @@ ...@@ -7274,80 +7256,97 @@
<viewControllerLayoutGuide type="bottom" id="ddp-cU-kfu"/> <viewControllerLayoutGuide type="bottom" id="ddp-cU-kfu"/>
</layoutGuides> </layoutGuides>
<view key="view" contentMode="scaleToFill" id="UZp-SQ-miZ"> <view key="view" contentMode="scaleToFill" id="UZp-SQ-miZ">
<rect key="frame" x="0.0" y="0.0" width="500" height="400"/> <rect key="frame" x="0.0" y="0.0" width="400" height="400"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews> <subviews>
<tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="18" sectionFooterHeight="18" translatesAutoresizingMaskIntoConstraints="NO" id="aQu-8I-Tue"> <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="oppledj" translatesAutoresizingMaskIntoConstraints="NO" id="9lY-hV-E9Y">
<rect key="frame" x="0.0" y="20" width="500" height="380"/> <rect key="frame" x="0.0" y="0.0" width="400" height="400"/>
<color key="backgroundColor" cocoaTouchSystemColor="groupTableViewBackgroundColor"/> </imageView>
<prototypes> <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="UZ7-Dj-VcO">
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="ResellerTableViewCell" id="t8E-4H-iqe" customClass="ResellerTableViewCell"> <rect key="frame" x="0.0" y="300" width="400" height="100"/>
<rect key="frame" x="0.0" y="56" width="500" height="44"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="t8E-4H-iqe" id="1Ni-4R-0nU">
<rect key="frame" x="0.0" y="0.0" width="500" height="43"/>
<autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="欧普到家门店编号:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="VZV-5Y-0yw"> <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="sureButtonBack" translatesAutoresizingMaskIntoConstraints="NO" id="mkH-dx-MHA">
<rect key="frame" x="20" y="11" width="143.5" height="21"/> <rect key="frame" x="0.0" y="0.0" width="400" height="100"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/> </imageView>
<nil key="textColor"/> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="naJ-f3-gYi">
<nil key="highlightedColor"/> <rect key="frame" x="110" y="28" width="180" height="45"/>
</label> <color key="backgroundColor" red="0.99607843137254903" green="0.81176470588235294" blue="0.18431372549019609" alpha="1" colorSpace="calibratedRGB"/>
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="请输入" textAlignment="right" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="RQ3-3m-EfX">
<rect key="frame" x="183.5" y="7" width="267.5" height="30"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="Fep-JC-nSi"/>
</constraints>
<nil key="textColor"/>
<fontDescription key="fontDescription" type="system" pointSize="14"/>
<textInputTraits key="textInputTraits"/>
</textField>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Rsv-5B-b70">
<rect key="frame" x="466" y="10" width="24" height="24"/>
<constraints> <constraints>
<constraint firstAttribute="width" constant="24" id="fkg-dF-wBM"/> <constraint firstAttribute="height" constant="45" id="Bgi-QE-lYc"/>
<constraint firstAttribute="height" constant="24" id="jNy-B0-DLa"/> <constraint firstAttribute="width" constant="180" id="v7V-k0-B6t"/>
</constraints> </constraints>
<state key="normal" backgroundImage="question"/> <state key="normal" title="确认">
<color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="20"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
<connections> <connections>
<action selector="storeNumberButtonClick:" destination="t8E-4H-iqe" eventType="touchUpInside" id="wQr-nF-uau"/> <action selector="sureButtonClickAction:" destination="fSJ-iu-dAI" eventType="touchUpInside" id="c9A-ng-bst"/>
</connections> </connections>
</button> </button>
</subviews> </subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<constraints> <constraints>
<constraint firstItem="RQ3-3m-EfX" firstAttribute="centerY" secondItem="1Ni-4R-0nU" secondAttribute="centerY" id="2vx-HV-uOT"/> <constraint firstAttribute="bottom" secondItem="mkH-dx-MHA" secondAttribute="bottom" id="2AO-LB-pVs"/>
<constraint firstItem="VZV-5Y-0yw" firstAttribute="leading" secondItem="1Ni-4R-0nU" secondAttribute="leading" constant="20" id="JCz-fu-fEt"/> <constraint firstItem="naJ-f3-gYi" firstAttribute="centerX" secondItem="UZ7-Dj-VcO" secondAttribute="centerX" id="MTO-HU-XuI"/>
<constraint firstItem="RQ3-3m-EfX" firstAttribute="leading" secondItem="VZV-5Y-0yw" secondAttribute="trailing" constant="20" id="OcO-6N-E8W"/> <constraint firstItem="naJ-f3-gYi" firstAttribute="centerY" secondItem="UZ7-Dj-VcO" secondAttribute="centerY" id="XwC-5M-Kn2"/>
<constraint firstAttribute="trailing" secondItem="Rsv-5B-b70" secondAttribute="trailing" constant="10" id="Uha-zF-zkA"/> <constraint firstItem="mkH-dx-MHA" firstAttribute="top" secondItem="UZ7-Dj-VcO" secondAttribute="top" id="aUm-mn-HlL"/>
<constraint firstItem="Rsv-5B-b70" firstAttribute="leading" secondItem="RQ3-3m-EfX" secondAttribute="trailing" constant="15" id="WvK-Zu-x61"/> <constraint firstAttribute="trailing" secondItem="mkH-dx-MHA" secondAttribute="trailing" id="ny9-1c-I5c"/>
<constraint firstItem="VZV-5Y-0yw" firstAttribute="centerY" secondItem="1Ni-4R-0nU" secondAttribute="centerY" id="a6P-mL-IUv"/> <constraint firstAttribute="height" constant="100" id="qmI-Ul-8yE"/>
<constraint firstItem="Rsv-5B-b70" firstAttribute="centerY" secondItem="VZV-5Y-0yw" secondAttribute="centerY" id="evS-qE-qjk"/> <constraint firstItem="mkH-dx-MHA" firstAttribute="leading" secondItem="UZ7-Dj-VcO" secondAttribute="leading" id="x5W-3F-uzU"/>
</constraints> </constraints>
</tableViewCellContentView> </view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="门店编号" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="fUE-bY-b0A">
<rect key="frame" x="30" y="171" width="62" height="18"/>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="请输入您的欧普到家门店编码" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="8zq-am-Lgl" customClass="XYTextField">
<rect key="frame" x="102" y="162" width="268" height="35"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstAttribute="height" constant="35" id="XbP-oP-nfD"/>
</constraints>
<nil key="textColor"/>
<fontDescription key="fontDescription" type="system" pointSize="14"/>
<textInputTraits key="textInputTraits"/>
<connections> <connections>
<outlet property="resellerTextField" destination="RQ3-3m-EfX" id="pQW-IS-Ou1"/> <outlet property="delegate" destination="fSJ-iu-dAI" id="foj-9e-i2M"/>
</connections> </connections>
</tableViewCell> </textField>
</prototypes> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="cec-Eh-HKn">
<rect key="frame" x="255" y="207" width="115" height="22"/>
<state key="normal" image="编号在哪里?点击这里"/>
<connections> <connections>
<outlet property="dataSource" destination="fSJ-iu-dAI" id="oNV-Sx-pSE"/> <action selector="helpButtonClickAction:" destination="fSJ-iu-dAI" eventType="touchUpInside" id="2gd-Ng-H6p"/>
<outlet property="delegate" destination="fSJ-iu-dAI" id="JT9-fn-Ypg"/>
</connections> </connections>
</tableView> </button>
</subviews> </subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<constraints> <constraints>
<constraint firstItem="aQu-8I-Tue" firstAttribute="leading" secondItem="UZp-SQ-miZ" secondAttribute="leading" id="3P3-Ny-rDX"/> <constraint firstItem="cec-Eh-HKn" firstAttribute="top" secondItem="8zq-am-Lgl" secondAttribute="bottom" constant="10" id="88c-yb-yiw"/>
<constraint firstAttribute="trailing" secondItem="aQu-8I-Tue" secondAttribute="trailing" id="EBJ-pj-2R8"/> <constraint firstAttribute="trailing" secondItem="8zq-am-Lgl" secondAttribute="trailing" constant="30" id="8ll-7X-OPU"/>
<constraint firstItem="aQu-8I-Tue" firstAttribute="top" secondItem="UZp-SQ-miZ" secondAttribute="top" constant="20" id="VXE-gO-qYa"/> <constraint firstItem="ddp-cU-kfu" firstAttribute="top" secondItem="UZ7-Dj-VcO" secondAttribute="bottom" id="EJE-fS-ae3"/>
<constraint firstItem="ddp-cU-kfu" firstAttribute="top" secondItem="aQu-8I-Tue" secondAttribute="bottom" id="kHM-Zb-8HI"/> <constraint firstItem="cec-Eh-HKn" firstAttribute="trailing" secondItem="8zq-am-Lgl" secondAttribute="trailing" id="JeZ-FO-op7"/>
<constraint firstItem="UZ7-Dj-VcO" firstAttribute="leading" secondItem="UZp-SQ-miZ" secondAttribute="leading" id="KUJ-4X-nHy"/>
<constraint firstAttribute="trailing" secondItem="UZ7-Dj-VcO" secondAttribute="trailing" id="U0B-oq-BZT"/>
<constraint firstItem="9lY-hV-E9Y" firstAttribute="top" secondItem="UZp-SQ-miZ" secondAttribute="top" id="URt-wC-iLM"/>
<constraint firstItem="8zq-am-Lgl" firstAttribute="centerY" secondItem="fUE-bY-b0A" secondAttribute="centerY" id="UuD-an-qKf"/>
<constraint firstItem="ddp-cU-kfu" firstAttribute="top" secondItem="9lY-hV-E9Y" secondAttribute="bottom" id="dql-nJ-fzq"/>
<constraint firstItem="9lY-hV-E9Y" firstAttribute="leading" secondItem="UZp-SQ-miZ" secondAttribute="leading" id="h3B-lt-jBh"/>
<constraint firstAttribute="trailing" secondItem="9lY-hV-E9Y" secondAttribute="trailing" id="hur-E0-807"/>
<constraint firstItem="fUE-bY-b0A" firstAttribute="leading" secondItem="UZp-SQ-miZ" secondAttribute="leading" constant="30" id="lKq-2g-Bz5"/>
<constraint firstItem="fUE-bY-b0A" firstAttribute="centerY" secondItem="UZp-SQ-miZ" secondAttribute="centerY" multiplier="0.9" id="nNU-2L-EcF"/>
<constraint firstItem="8zq-am-Lgl" firstAttribute="leading" secondItem="fUE-bY-b0A" secondAttribute="trailing" constant="10" id="yBL-6y-GIu"/>
</constraints> </constraints>
</view> </view>
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/> <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
<size key="freeformSize" width="500" height="400"/> <size key="freeformSize" width="400" height="400"/>
<connections> <connections>
<outlet property="resellerTableView" destination="aQu-8I-Tue" id="cJ0-6c-WHq"/> <outlet property="storeNumberTextField" destination="8zq-am-Lgl" id="eky-Un-4FD"/>
</connections> </connections>
</viewController> </viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="17e-cf-fgJ" userLabel="First Responder" sceneMemberID="firstResponder"/> <placeholder placeholderIdentifier="IBFirstResponder" id="17e-cf-fgJ" userLabel="First Responder" sceneMemberID="firstResponder"/>
...@@ -7383,7 +7382,7 @@ ...@@ -7383,7 +7382,7 @@
<rect key="frame" x="0.0" y="28" width="1024" height="44"/> <rect key="frame" x="0.0" y="28" width="1024" height="44"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="oPa-eM-dSd" id="GU3-wN-YE4"> <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="oPa-eM-dSd" id="GU3-wN-YE4">
<rect key="frame" x="0.0" y="0.0" width="1024" height="43"/> <rect key="frame" x="0.0" y="0.0" width="1024" height="43.5"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="身份证号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="D2u-XX-tUW"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="身份证号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="D2u-XX-tUW">
...@@ -7748,14 +7747,15 @@ ...@@ -7748,14 +7747,15 @@
<image name="mask" width="290" height="72"/> <image name="mask" width="290" height="72"/>
<image name="now" width="110" height="110"/> <image name="now" width="110" height="110"/>
<image name="onehundred" width="290" height="143"/> <image name="onehundred" width="290" height="143"/>
<image name="oppledj" width="308" height="304"/>
<image name="progress" width="403" height="34"/> <image name="progress" width="403" height="34"/>
<image name="quanping" width="45" height="45"/> <image name="quanping" width="45" height="45"/>
<image name="question" width="24" height="24"/>
<image name="reduce" width="49" height="45"/> <image name="reduce" width="49" height="45"/>
<image name="selectCamer" width="45" height="45"/> <image name="selectCamer" width="45" height="45"/>
<image name="selectHelp" width="45" height="45"/> <image name="selectHelp" width="45" height="45"/>
<image name="selectShare" width="45" height="45"/> <image name="selectShare" width="45" height="45"/>
<image name="selectshoping" width="45" height="45"/> <image name="selectshoping" width="45" height="45"/>
<image name="sureButtonBack" width="308" height="87"/>
<image name="trunoff" width="45" height="45"/> <image name="trunoff" width="45" height="45"/>
<image name="trunon" width="45" height="45"/> <image name="trunon" width="45" height="45"/>
<image name="used" width="51" height="51"/> <image name="used" width="51" height="51"/>
...@@ -7770,6 +7770,7 @@ ...@@ -7770,6 +7770,7 @@
<image name="已完成" width="87" height="87"/> <image name="已完成" width="87" height="87"/>
<image name="欧New" width="516" height="201"/> <image name="欧New" width="516" height="201"/>
<image name="登录" width="1024" height="768"/> <image name="登录" width="1024" height="768"/>
<image name="编号在哪里?点击这里" width="115" height="11"/>
<image name="视角" width="27" height="28"/> <image name="视角" width="27" height="28"/>
<image name="默认场景" width="1500" height="1125"/> <image name="默认场景" width="1500" height="1125"/>
</resources> </resources>
......
{
"images" : [
{
"idiom" : "universal",
"filename" : "oppledj.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "oppledj@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "oppledj@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
\ No newline at end of file
{
"images" : [
{
"idiom" : "universal",
"filename" : "reference.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
\ No newline at end of file
{
"images" : [
{
"idiom" : "universal",
"filename" : "sureButtonBack.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "sureButtonBack@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "sureButtonBack@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
\ No newline at end of file
{
"images" : [
{
"idiom" : "universal",
"filename" : "编号在哪里?点击这里.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "编号在哪里?点击这里@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "编号在哪里?点击这里@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
\ No newline at end of file
...@@ -14,10 +14,12 @@ ...@@ -14,10 +14,12 @@
- Announcement: 公告 - Announcement: 公告
- Study: 学习 - Study: 学习
- Image: 本地图片
*/ */
typedef NS_ENUM(NSInteger,CALL_TYPE) { typedef NS_ENUM(NSInteger,CALL_TYPE) {
Announcement = 0, Announcement = 0,
Study Study,
Image
}; };
@interface CustomWKWebViewController : BaseViewController @interface CustomWKWebViewController : BaseViewController
......
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
} }
#pragma mark - 停止播放 #pragma mark - 停止播放
-(void) viewDidDisappear:(BOOL)animated{ -(void)viewDidDisappear:(BOOL)animated{
[super viewDidDisappear:animated]; [super viewDidDisappear:animated];
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"about:blank"]]]; [self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"about:blank"]]];
} }
...@@ -84,7 +84,11 @@ ...@@ -84,7 +84,11 @@
- (void)setUrlString:(NSString *)urlString - (void)setUrlString:(NSString *)urlString
{ {
_urlString = urlString; _urlString = urlString;
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:_urlString]]]; if (self.type == Image) {
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:urlString]]];
}else {
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlString]]];
}
} }
#pragma mark - 添加删除按钮 #pragma mark - 添加删除按钮
......
...@@ -91,13 +91,12 @@ ...@@ -91,13 +91,12 @@
- (void)perfectResellerInformation - (void)perfectResellerInformation
{ {
ResellerViewController *resellerVc = [[[self class] getMainStoryboardClass] instantiateViewControllerWithIdentifier:@"ResellerViewController"]; ResellerViewController *resellerVc = [[[self class] getMainStoryboardClass] instantiateViewControllerWithIdentifier:@"ResellerViewController"];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:resellerVc]; resellerVc.preferredContentSize = CGSizeMake(400, 400);
nav.preferredContentSize = CGSizeMake(ScreenHeight-300, 100); resellerVc.modalPresentationStyle = UIModalPresentationFormSheet;
nav.modalPresentationStyle = UIModalPresentationFormSheet; UIPopoverPresentationController *pop = resellerVc.popoverPresentationController;
UIPopoverPresentationController *pop = nav.popoverPresentationController;
pop.permittedArrowDirections = UIPopoverArrowDirectionAny; pop.permittedArrowDirections = UIPopoverArrowDirectionAny;
pop.sourceView = nav.view; pop.sourceView = resellerVc.view;
[self presentViewController:nav animated:YES completion:nil]; [self presentViewController:resellerVc animated:YES completion:nil];
} }
......
//
// XYTextField.h
// SaleHelper
//
// Created by 曹云霄 on 2017/1/11.
// Copyright © 2017年 上海勾芒信息科技. All rights reserved.
//
#import <UIKit/UIKit.h>
//重写父类方法,控制缩进
@interface XYTextField : UITextField
- (CGRect)textRectForBounds:(CGRect)bounds;
- (CGRect)editingRectForBounds:(CGRect)bounds;
@end
//
// XYTextField.m
// SaleHelper
//
// Created by 曹云霄 on 2017/1/11.
// Copyright © 2017年 上海勾芒信息科技. All rights reserved.
//
#import "XYTextField.h"
@implementation XYTextField
- (CGRect)textRectForBounds:(CGRect)bounds {
return CGRectInset( bounds , 20 , 0 );
}
//控制编辑文本时所在的位置,左右缩 30
- (CGRect)editingRectForBounds:(CGRect)bounds {
return CGRectInset( bounds , 20 , 0 );
}
@end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment