Commit 5a97a35e by 田超

Merge branch 'feature/1003902' into 'master'

feat: [1003902] 准考证

See merge request rays/pcloud-common-parent!175
parents 75bec6df bf8f4b35
...@@ -176,7 +176,11 @@ public enum AppRouteEnum { ...@@ -176,7 +176,11 @@ public enum AppRouteEnum {
/** /**
* flag * flag
*/ */
FLAG("flag", AppTypeEnum.FLAG.value); FLAG("flag", AppTypeEnum.FLAG.value),
/**
* 准考证
*/
TICKET("ticket", AppTypeEnum.TICKET.value);
/** /**
* 值 * 值
......
...@@ -90,7 +90,8 @@ public enum AppTypeEnum { ...@@ -90,7 +90,8 @@ public enum AppTypeEnum {
BOOK_CLICK("BOOK_CLICK", "点读书"), BOOK_CLICK("BOOK_CLICK", "点读书"),
COLD_KNOWLEDGE("COLD_KNOWLEDGE", "冷知识"), COLD_KNOWLEDGE("COLD_KNOWLEDGE", "冷知识"),
FLAG("FLAG", "立Flag"); FLAG("FLAG", "立Flag"),
TICKET("TICKET","准考证");
/** /**
* 枚举转换 * 枚举转换
......
...@@ -127,6 +127,8 @@ public class ServeLinkUtils { ...@@ -127,6 +127,8 @@ public class ServeLinkUtils {
return "*flag" + basePath + "A" + id + "/entryFlag/start" + commonQuerys; return "*flag" + basePath + "A" + id + "/entryFlag/start" + commonQuerys;
}else if ("COLD_KNOWLEDGE".equals(typeCode)) { }else if ("COLD_KNOWLEDGE".equals(typeCode)) {
return "*cold" + basePath + "A" + id + "/entryCold/start" + commonQuerys; return "*cold" + basePath + "A" + id + "/entryCold/start" + commonQuerys;
} else if ("TICKET".equals(typeCode)) {
return "*aticket" + basePath + "A" + id + "/ticketHome" + commonQuerys;
} else { } else {
return "" + basePath + "application/" + id + "/display" + commonQuerys + "&appType=" + typeCode; return "" + basePath + "application/" + id + "/display" + commonQuerys + "&appType=" + typeCode;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment