소스 검색

项目列表详情

fuwencai 4 년 전
부모
커밋
0ee803702d
2개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      router/pageRouter.go
  2. 10 0
      static/templates/peojectListDetail.html

+ 4 - 0
router/pageRouter.go

@@ -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)
+}

+ 10 - 0
static/templates/peojectListDetail.html

@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>$Title$</title>
+</head>
+<body>
+$END$
+</body>
+</html>