Browse Source

添加按日期和缴费类型查询统计数据方法 和 查询当年和陈欠缴费数据接口

pull/2/head
zhangxin 4 years ago
parent
commit
d6f600a33c
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      web/routes/routes.go

+ 3
- 1
web/routes/routes.go View File

@ -1,10 +1,10 @@
package routes
import (
"github.com/kataras/iris"
"lapp_-wy/web/controllers"
"lapp_-wy/web/middleware"
"lapp_-wy/web/middleware/cors"
"github.com/kataras/iris"
)
// 所有的路由
@ -168,6 +168,8 @@ func Hub(app *iris.Application) {
chargetab.Get("/readdataexcel", controllers.GetChargetabReadDataExcel)
chargetab.Delete("/del", controllers.DelChargetab)
chargetab.Get("/recordlist", controllers.GetRecordLogList)
chargetab.Get("/statistic", controllers.GetChargeStatisticData)
chargetab.Get("/statistic/type", controllers.GetChargeTypeStatisticData)
// 固定资产
assettab := admin.Party("/assettab")


Loading…
Cancel
Save