|
@@ -24,6 +24,7 @@ public class AppStyle extends ConfigObject {
|
|
|
|
|
|
|
|
this.indexType = INDEXTYPE_DEFAULT;
|
|
this.indexType = INDEXTYPE_DEFAULT;
|
|
|
this.indexPortal = "";
|
|
this.indexPortal = "";
|
|
|
|
|
+ this.simpleMode = false;
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -112,6 +113,9 @@ public class AppStyle extends ConfigObject {
|
|
|
@FieldDescribe("门户首页.")
|
|
@FieldDescribe("门户首页.")
|
|
|
private String indexPortal;
|
|
private String indexPortal;
|
|
|
|
|
|
|
|
|
|
+ @FieldDescribe("移动端简易模式")
|
|
|
|
|
+ private Boolean simpleMode;
|
|
|
|
|
+
|
|
|
@FieldDescribe("导航设置")
|
|
@FieldDescribe("导航设置")
|
|
|
private TreeSet<NativeApp> nativeAppList = new TreeSet<>();
|
|
private TreeSet<NativeApp> nativeAppList = new TreeSet<>();
|
|
|
|
|
|
|
@@ -126,6 +130,15 @@ public class AppStyle extends ConfigObject {
|
|
|
this.indexPortal = indexPortal;
|
|
this.indexPortal = indexPortal;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public Boolean getSimpleMode() {
|
|
|
|
|
+ return simpleMode;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSimpleMode(Boolean simpleMode) {
|
|
|
|
|
+ this.simpleMode = simpleMode;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
public static class Image extends GsonPropertyObject implements Comparable<Image> {
|
|
public static class Image extends GsonPropertyObject implements Comparable<Image> {
|
|
|
|
|
|
|
|
public static Image launch_logo() {
|
|
public static Image launch_logo() {
|