diff --git a/business/jxstore/tempop/tempop.go b/business/jxstore/tempop/tempop.go index cf5cf3404..d16c7f662 100644 --- a/business/jxstore/tempop/tempop.go +++ b/business/jxstore/tempop/tempop.go @@ -1634,13 +1634,13 @@ func UploadJdsImage(ctx *jxcontext.Context) (err error) { storeName = storeName[0:strings.Index(storeName, "(")] + storeName[strings.Index(storeName, ")")+3:len(storeName)] } if strings.Contains(storeName, ".") { - storeName = storeName[0:strings.Index(storeName, ".")] + storeName[strings.Index(storeName, ".")+1:len(storeName)] + storeName = strings.ReplaceAll(storeName, ".", "") } if strings.Contains(storeName, "-") { - storeName = storeName[0:strings.Index(storeName, "-")] + storeName[strings.Index(storeName, "-")+1:len(storeName)] + storeName = strings.ReplaceAll(storeName, "-", "") } if strings.Contains(storeName, " ") { - storeName = storeName[0:strings.Index(storeName, " ")] + storeName[strings.Index(storeName, " ")+1:len(storeName)] + storeName = strings.ReplaceAll(storeName, " ", "") } storeName = "京西菜市" + strings.ReplaceAll(storeName, "店", "") + "生鲜店" if len(storeName) > 30 {