mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-09-25 23:54:31 +08:00
update: page issue template
This commit is contained in:
@ -188,7 +188,7 @@ class DataUtils {
|
||||
"name": json['name'],
|
||||
"cnName": json['name'],
|
||||
"routerName": routerName,
|
||||
"catId": int.parse(json['parentId'])
|
||||
"catId": json['parentId'].runtimeType == String ? int.parse(json['parentId']) : json['parentId']
|
||||
};
|
||||
list.add(WidgetPoint.fromJSON(tempMap));
|
||||
}
|
||||
|
Reference in New Issue
Block a user