From 2843356057013ac9a842e2e91e7bb69edb1e8600 Mon Sep 17 00:00:00 2001 From: suyl <770236076@qq.com> Date: Tue, 10 Aug 2021 15:44:28 +0800 Subject: [PATCH] aa --- business/jxstore/cms/job.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/business/jxstore/cms/job.go b/business/jxstore/cms/job.go index b4ce511ec..18007b00a 100644 --- a/business/jxstore/cms/job.go +++ b/business/jxstore/cms/job.go @@ -2186,7 +2186,7 @@ func MtUnionJobAutoUpdate(ctx *jxcontext.Context) (err error) { storeURL := "" percentage := 0 if v.ActRule != "" { - if storeURLs := regexp.MustCompile(`href=\\\\\\"(.*?)"\\\\\\`).FindStringSubmatch(v.ActRule); len(storeURLs) > 0 { + if storeURLs := regexp.MustCompile(`href="(.*?)"`).FindStringSubmatch(strings.ReplaceAll(v.ActRule, "\\", "")); len(storeURLs) > 0 { fmt.Println("storeURLs .........................", storeURLs) storeURL = storeURLs[1] }