|
@@ -14,6 +14,7 @@ func pageRouterRegister(router *gin.Engine) {
|
|
|
pageRouterGroup.GET("/userRecharge", userRechargePage)
|
|
|
pageRouterGroup.GET("/projectDetailsPage", projectDetailsPage)
|
|
|
pageRouterGroup.GET("/projectListPage", projectListPage)
|
|
|
+ pageRouterGroup.GET("/projectListDetail", projectListDetailPage)
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -39,3 +40,6 @@ func projectDetailsPage(context *gin.Context) {
|
|
|
func projectListPage(context *gin.Context) {
|
|
|
context.HTML(200, "projectList.html", nil)
|
|
|
}
|
|
|
+func projectListDetailPage(context *gin.Context) {
|
|
|
+ context.HTML(200, "projectListDetail.html", nil)
|
|
|
+}
|