Browse Source

附件次修改

Jianghan 1 năm trước cách đây
mục cha
commit
52bbe697f7
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      jyBXCore/rpc/service/search.go

+ 1 - 1
jyBXCore/rpc/service/search.go

@@ -94,7 +94,7 @@ func GetBidSearchData(in *bxcore.SearchReq, isCache bool) (count int64, list []*
 				var words []string
 				words = strings.Split(in.KeyWords, " ")
 				if in.AdditionalWords != "" {
-					words = append(words, strings.Split(in.AdditionalWords, " ")...)
+					words = append(words, strings.Split(in.AdditionalWords, ",")...)
 				}
 				list = util.SearchListFormat(in.UserId, in.SubInformation, in.PropertyForm, in.Industry, repl, strings.Contains(in.SelectType, "detail"), in.BidField, words)
 			}