|
|
@@ -50,13 +50,14 @@ class LowPriceGoods extends Api
|
|
|
$processing_status = request('processing_status', '');
|
|
|
$product_specs = request('product_specs', '');
|
|
|
$online_posting_count = request('online_posting_count', '');
|
|
|
+ $id = request('id', '');
|
|
|
// 时间条件
|
|
|
if ($start_time) $map[] = ['insert_time', '>=', strtotime($start_time)];
|
|
|
if ($end_time) $map[] = ['insert_time', '<=', strtotime($end_time)];
|
|
|
// 其他条件
|
|
|
if ($product_name) $map[] = ['product_name', 'like', "%$product_name%"];
|
|
|
if ($store_name) $map[] = ['store_name', 'like', "%$store_name%"];
|
|
|
-
|
|
|
+ if ($id) $map[] = ['id', '=', $id];
|
|
|
|
|
|
//多选平台查询
|
|
|
if ($platform && is_string($platform)) {
|