|
@@ -268,6 +268,7 @@ func InitRoute(r *gin.Engine) {
|
|
|
s.POST("/selection/del", controller.TaskController{}.SelectionDel) // 删除带货任务
|
|
|
s.POST("/selection/close", controller.TaskController{}.SelectionClose) // 结束带货任务
|
|
|
s.POST("/qrcode/getwxqrcode", handler.WrapGetWxQRCodeHandler) // 获取微信二维码
|
|
|
+ s.POST("/selection/review", handler.WrapReviewSelectionHandler) //审核带货
|
|
|
|
|
|
//// 电商带货选达人列表 见/youngee/b/selection/task/list
|
|
|
//task.POST("/selection/talent/count", controller.TaskController{}.SelectionTalentCount) // 电商带货选达人角标
|
|
@@ -277,6 +278,7 @@ func InitRoute(r *gin.Engine) {
|
|
|
//task.POST("/selection/reward/cash", controller.TaskController{}.SelectionRewardCash) // 电商带货执行中-悬赏兑现
|
|
|
|
|
|
//task.POST("/project/create", controller.TaskController{}.CreateProject) // 创建种草任务
|
|
|
+ s.POST("/project/review", handler.WrapReviewProjectHandler)
|
|
|
s.POST("/project/update", controller.TaskController{}.UpdateProject) // 更新公开种草任务
|
|
|
s.POST("/project/target/update", controller.TaskController{}.UpdateProjectTarget) // 更新定向种草任务
|
|
|
s.POST("/project/detail", controller.TaskController{}.GetProjectDetail) // 品牌种草任务预览
|