This commit is contained in:
suyl
2021-08-10 15:25:29 +08:00
parent 5b3d26c061
commit c82ee269cd
2 changed files with 9 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ import (
"fmt" "fmt"
"git.rosy.net.cn/baseapi/platformapi/mtunionapi" "git.rosy.net.cn/baseapi/platformapi/mtunionapi"
"git.rosy.net.cn/baseapi/platformapi/tbunionapi" "git.rosy.net.cn/baseapi/platformapi/tbunionapi"
"git.rosy.net.cn/jx-callback/business/jxstore/partner/mt"
"math" "math"
"regexp" "regexp"
"strings" "strings"
@@ -2159,11 +2160,10 @@ func MtUnionJobAutoUpdate(ctx *jxcontext.Context) (err error) {
return err return err
} }
//再查美团联盟上的所有活动 //再查美团联盟上的所有活动
acts, err := api.MtUnionAPI.ActivityList(1, 20, 0) acts, err := mt.GetAPI().ActivityList(1, 20, 0)
if err != nil { if err != nil {
return err return err
} }
fmt.Println(utils.Format4Output(acts, true))
for _, v := range acts { for _, v := range acts {
if v.DateBound != "" { if v.DateBound != "" {
dateBegin := utils.Str2Time(v.DateBound[:strings.LastIndex(v.DateBound, "至")-1]) dateBegin := utils.Str2Time(v.DateBound[:strings.LastIndex(v.DateBound, "至")-1])

View File

@@ -25,3 +25,10 @@ func getAPI() (apiobj *mtunionapi.API) {
} }
return api.MtUnionAPI return api.MtUnionAPI
} }
func GetAPI() (apiobj *mtunionapi.API) {
if configs, err := dao.QueryConfigs(dao.GetDB(), "mtunionCookie", model.ConfigTypeCookie, ""); err == nil {
api.MtUnionAPI.SetCookieWithStr(configs[0].Value)
}
return api.MtUnionAPI
}