소스 검색

1.修改iOS Apex Drivers Update Order直接显示Signature日期。

Pen Li 7 년 전
부모
커밋
a5a8cd1ac3
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      Redant Drivers/Apex And Drivers/Update/RAOrderEditViewController.m

+ 8 - 0
Redant Drivers/Apex And Drivers/Update/RAOrderEditViewController.m

@@ -46,6 +46,14 @@
         RAEditBaseModel *model = [self createModelWithJsonItem:item];
         if (model) {
             [itemArr addObject:model];
+            // expand 直接放出来
+            if (model.expand && [model.expand isKindOfClass:[NSDictionary class]]) {
+                RAEditBaseModel *expand = [self createModelWithJsonItem:model.expand];
+                if (expand) {
+                    model.expand = expand;
+                    [itemArr addObject:expand];
+                }
+            }
         }
     }
     _items = itemArr;