This commit is contained in:
邹宗楠
2024-09-29 11:18:02 +08:00
parent 9ae8649674
commit 63e9544168

View File

@@ -2110,10 +2110,9 @@ func TmpGetJxBadCommentsByStoreId(ctx *jxcontext.Context, keyword string, storeI
sqlParams = append(sqlParams, toTime)
}
if operatorPhone != "" {
sql += " AND (t2.market_man_hone = ? 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_phone1 = ? OR t2.operator_phone2 = ?)"
sqlParams = append(sqlParams, operatorPhone, operatorPhone, operatorPhone, operatorPhone)
}
sql += " ORDER BY t1.createtime DESC"
pageSize = jxutils.FormalizePageSize(pageSize)
offset = jxutils.FormalizePageOffset(offset)