소스 검색

Merge branch 'dev4.6.3.2' of http://192.168.3.207:8080/qmx/jy into dev4.6.3.2

zhangyuhan 3 년 전
부모
커밋
1bfda254f8
2개의 변경된 파일12개의 추가작업 그리고 2개의 파일을 삭제
  1. 6 1
      src/jfw/active/21yearEndReport.go
  2. 6 1
      src/jfw/modules/app/src/app/active/21yearEndReport.go

+ 6 - 1
src/jfw/active/21yearEndReport.go

@@ -43,7 +43,12 @@ func init() {
 //YearEndReport 21年,年终报告
 type YearEndReport struct {
 	*xweb.Action
-	yearEndReportPage xweb.Mapper `xweb:"/active/yearEndReport"` //21年终报告wx页面
+	yearEndReportPage   xweb.Mapper `xweb:"/active/yearEndReport"`       //21年终报告wx页面
+	yearEndReportResult xweb.Mapper `xweb:"/active/yearEndReportResult"` //21年终报告wx结果页面
+}
+
+func (this *YearEndReport) YearEndReportResult() error {
+	return this.Render("/active/yearEndReport/result.html")
 }
 
 func (this *YearEndReport) YearEndReportPage() error {

+ 6 - 1
src/jfw/modules/app/src/app/active/21yearEndReport.go

@@ -34,7 +34,12 @@ func init() {
 //YearEndReport 21年,年终报告
 type YearEndReport struct {
 	*xweb.Action
-	yearEndReportPage xweb.Mapper `xweb:"/jyapp/active/yearEndReport"` //21年终报告app页面
+	yearEndReportPage   xweb.Mapper `xweb:"/jyapp/active/yearEndReport"`       //21年终报告app页面
+	yearEndReportResult xweb.Mapper `xweb:"/jyapp/active/yearEndReportResult"` //21年终报告app结果页面
+}
+
+func (this *YearEndReport) YearEndReportResult() error {
+	return this.Render("/active/yearEndReport/result.html")
 }
 
 func (this *YearEndReport) YearEndReportPage() error {