Browse Source

1.修复Enum Sort返回结果错误。

Pen Li 8 years ago
parent
commit
8081a9198b

+ 1 - 1
RedAnt ERP Mobile/common/CommonEditor/EnumSelectAndSort/EnumSelectAndSortViewController.m

@@ -127,7 +127,7 @@
         NSString *key = [NSString stringWithFormat:@"val_%d",i];
         [dic setObject:val_json forKey:key];
     }
-    
+    [dic setObject:[NSNumber numberWithInteger:dic.allKeys.count] forKey:@"count"];
     return dic;
 }