作者 tangxvhui

微调

@@ -8,4 +8,7 @@ import ( @@ -8,4 +8,7 @@ import (
8 func init() { 8 func init() {
9 //日志输出 9 //日志输出
10 web.Router("/log", &controllers.LoggerController{}, "Get:Output") 10 web.Router("/log", &controllers.LoggerController{}, "Get:Output")
  11 + // web.NSCtrlGet("/test1", func() {
  12 +
  13 + // })
11 } 14 }
@@ -31,7 +31,7 @@ func init() { @@ -31,7 +31,7 @@ func init() {
31 web.NSCtrlPost("/target_user/evaluation-super", (*controllers.SummaryEvaluationController).GetTargetUserEvaluationSuper), 31 web.NSCtrlPost("/target_user/evaluation-super", (*controllers.SummaryEvaluationController).GetTargetUserEvaluationSuper),
32 web.NSCtrlPost("/evaluation-super/all", (*controllers.SummaryEvaluationController).ListAllEvaluationSuper), 32 web.NSCtrlPost("/evaluation-super/all", (*controllers.SummaryEvaluationController).ListAllEvaluationSuper),
33 web.NSCtrlPost("/evaluation-super/all/export", (*controllers.SummaryEvaluationController).ExportAllEvaluationSuper), 33 web.NSCtrlPost("/evaluation-super/all/export", (*controllers.SummaryEvaluationController).ExportAllEvaluationSuper),
34 - web.NSCtrlPost("/evaluation-self/now", (*controllers.SummaryEvaluationController).ListExecutorEvaluationSelf), 34 + web.NSCtrlGet("/evaluation-self/now", (*controllers.SummaryEvaluationController).ListExecutorEvaluationSelf),
35 // 35 //
36 ) 36 )
37 web.AddNamespace(summaryNS) 37 web.AddNamespace(summaryNS)