Commit bf8f4b35 by 朱亚洁

feat:[1003902]准考证

parent 75bec6df
......@@ -176,7 +176,11 @@ public enum AppRouteEnum {
/**
* flag
*/
FLAG("flag", AppTypeEnum.FLAG.value);
FLAG("flag", AppTypeEnum.FLAG.value),
/**
* 准考证
*/
TICKET("ticket", AppTypeEnum.TICKET.value);
/**
* 值
......
......@@ -90,7 +90,8 @@ public enum AppTypeEnum {
BOOK_CLICK("BOOK_CLICK", "点读书"),
COLD_KNOWLEDGE("COLD_KNOWLEDGE", "冷知识"),
FLAG("FLAG", "立Flag");
FLAG("FLAG", "立Flag"),
TICKET("TICKET","准考证");
/**
* 枚举转换
......
......@@ -127,6 +127,8 @@ public class ServeLinkUtils {
return "*flag" + basePath + "A" + id + "/entryFlag/start" + commonQuerys;
}else if ("COLD_KNOWLEDGE".equals(typeCode)) {
return "*cold" + basePath + "A" + id + "/entryCold/start" + commonQuerys;
} else if ("TICKET".equals(typeCode)) {
return "*aticket" + basePath + "A" + id + "/ticketHome" + commonQuerys;
} else {
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