|
|
@@ -22,6 +22,7 @@
|
|
|
@property (nonatomic,readonly) NSInteger ordersCount;
|
|
|
@property (nonatomic,assign) NSInteger section;
|
|
|
@property (nonatomic,assign) NSInteger totalCount;
|
|
|
+@property (nonatomic,assign) NSInteger backendCount;///<后台修改Order的个数
|
|
|
|
|
|
@end
|
|
|
|
|
|
@@ -223,6 +224,11 @@
|
|
|
return [sectionModel hasMoreOrder];
|
|
|
}
|
|
|
|
|
|
+- (NSInteger)backendCountForSection:(NSInteger)section {
|
|
|
+ RAHomeSectionModel *sectionModel = [self.sectionArray objectAtIndex:section];
|
|
|
+ return sectionModel.backendCount;
|
|
|
+}
|
|
|
+
|
|
|
#pragma mark - Data
|
|
|
|
|
|
- (void)loadData {
|