解决了bug

【在线车辆】非本人车辆应该是设计图上的白色,当前是蓝色的
http://jira.zhidaohulian.com/projects/UI/issues/UI-26?filter=myopenissues
This commit is contained in:
董宏宇
2020-02-04 18:01:54 +08:00
parent 087338ad26
commit 86649e8af7
4 changed files with 4 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ public class MarkerCarInfo implements Serializable {
public String getCarTypeName() {
if (TextUtils.isEmpty(carTypeName)) {
return "未知";
return "";
}
return carTypeName;
}

View File

@@ -83,7 +83,7 @@ public class MarkerUserInfo implements Serializable {
public String getGender() {
if (TextUtils.isEmpty(gender)) {
return "";
return "设置";
}
return gender;
}