From 090f9bb4a16181767f895ccb68a30a7b9d326ea1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Sun, 29 Sep 2024 11:22:28 +0800 Subject: [PATCH] 1 --- business/jxstore/cms/store.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/business/jxstore/cms/store.go b/business/jxstore/cms/store.go index 233f3ac55..12e53bb78 100644 --- a/business/jxstore/cms/store.go +++ b/business/jxstore/cms/store.go @@ -2110,9 +2110,10 @@ func TmpGetJxBadCommentsByStoreId(ctx *jxcontext.Context, keyword string, storeI sqlParams = append(sqlParams, toTime) } if operatorPhone != "" { - sql += " AND (t2.market_man_phone = ? OR t2.operator_phone = ? OR t2.operator_phone1 = ? OR t2.operator_phone2 = ?)" + sql += " AND (t2.market_man_phone = ? OR t2.operator_phone = ? OR t2.operator_phone2 = ? OR t2.operator_phone3 = ?)" sqlParams = append(sqlParams, operatorPhone, operatorPhone, operatorPhone, operatorPhone) } + model.Store{} sql += " ORDER BY t1.createtime DESC" pageSize = jxutils.FormalizePageSize(pageSize) offset = jxutils.FormalizePageOffset(offset)