aa
This commit is contained in:
@@ -370,14 +370,14 @@ func getStoresSql(ctx *jxcontext.Context, keyword string, params map[string]inte
|
|||||||
jdPhone := params["jdPhone"].(string)
|
jdPhone := params["jdPhone"].(string)
|
||||||
sqlWhere += " AND t1.operator_phone = ?"
|
sqlWhere += " AND t1.operator_phone = ?"
|
||||||
if jdPhone == "0" {
|
if jdPhone == "0" {
|
||||||
jdPhone = "''"
|
jdPhone = ""
|
||||||
}
|
}
|
||||||
sqlWhereParams = append(sqlWhereParams, jdPhone)
|
sqlWhereParams = append(sqlWhereParams, jdPhone)
|
||||||
}
|
}
|
||||||
if params["mtPhone"] != nil {
|
if params["mtPhone"] != nil {
|
||||||
mtPhone := params["mtPhone"].(string)
|
mtPhone := params["mtPhone"].(string)
|
||||||
if mtPhone == "0" {
|
if mtPhone == "0" {
|
||||||
mtPhone = "''"
|
mtPhone = ""
|
||||||
}
|
}
|
||||||
sqlWhere += " AND t1.operator_phone2 = ?"
|
sqlWhere += " AND t1.operator_phone2 = ?"
|
||||||
sqlWhereParams = append(sqlWhereParams, mtPhone)
|
sqlWhereParams = append(sqlWhereParams, mtPhone)
|
||||||
@@ -385,7 +385,7 @@ func getStoresSql(ctx *jxcontext.Context, keyword string, params map[string]inte
|
|||||||
if params["ebaiPhone"] != nil {
|
if params["ebaiPhone"] != nil {
|
||||||
ebaiPhone := params["ebaiPhone"].(string)
|
ebaiPhone := params["ebaiPhone"].(string)
|
||||||
if ebaiPhone == "0" {
|
if ebaiPhone == "0" {
|
||||||
ebaiPhone = "''"
|
ebaiPhone = ""
|
||||||
}
|
}
|
||||||
sqlWhere += " AND t1.operator_phone3 = ?"
|
sqlWhere += " AND t1.operator_phone3 = ?"
|
||||||
sqlWhereParams = append(sqlWhereParams, ebaiPhone)
|
sqlWhereParams = append(sqlWhereParams, ebaiPhone)
|
||||||
|
|||||||
Reference in New Issue
Block a user