Browse Source

update

tmp
DengBiao 7 months ago
parent
commit
a8df558f7e
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      app/router/admin_router.go

+ 4
- 4
app/router/admin_router.go View File

@@ -119,10 +119,10 @@ func rDeviceManage(r *gin.RouterGroup) {
}

func rMerchant(r *gin.RouterGroup) {
r.POST("/add", hdl2.MerchantAdd) //商家管理-新增
r.POST("/update", hdl2.MerchantUpdate) //商家管理-编辑
r.POST("/list", hdl2.MerchantList) //商家管理-列表
r.DELETE("/delete/:merchant_id", hdl2.MerchantDelete) //商家管理-删除
r.POST("/add", hdl2.MerchantAdd) //商家管理-新增
r.POST("/update", hdl2.MerchantUpdate) //商家管理-编辑
r.POST("/list", hdl2.MerchantList) //商家管理-列表
//r.DELETE("/delete/:merchant_id", hdl2.MerchantDelete) //商家管理-删除
}

func rDataStatistics(r *gin.RouterGroup) {


Loading…
Cancel
Save