|
@@ -50,6 +50,7 @@ class ViolationProduct extends Api
|
|
|
$processing_status = request('processing_status', '');
|
|
$processing_status = request('processing_status', '');
|
|
|
$product_specs = request('product_specs', '');
|
|
$product_specs = request('product_specs', '');
|
|
|
$online_posting_count = request('online_posting_count', '');
|
|
$online_posting_count = request('online_posting_count', '');
|
|
|
|
|
+ $continuous_listing_count = request('continuous_listing_count', '');
|
|
|
$id = request('id', '');
|
|
$id = request('id', '');
|
|
|
$product_brand = request('product_brand', '');
|
|
$product_brand = request('product_brand', '');
|
|
|
$anonymous_store_name = request('anonymous_store_name', '');
|
|
$anonymous_store_name = request('anonymous_store_name', '');
|
|
@@ -116,6 +117,11 @@ class ViolationProduct extends Api
|
|
|
$online_posting_count = explode(',', $online_posting_count);
|
|
$online_posting_count = explode(',', $online_posting_count);
|
|
|
$ViolationProductModel=$ViolationProductModel->whereIn('online_posting_count', $online_posting_count);
|
|
$ViolationProductModel=$ViolationProductModel->whereIn('online_posting_count', $online_posting_count);
|
|
|
}
|
|
}
|
|
|
|
|
+ //多选连续上架次数查询
|
|
|
|
|
+ if ($continuous_listing_count && is_string($continuous_listing_count)) {
|
|
|
|
|
+ $continuous_listing_count = explode(',', $continuous_listing_count);
|
|
|
|
|
+ $ViolationProductModel = $ViolationProductModel->whereIn('continuous_listing_count', $continuous_listing_count);
|
|
|
|
|
+ }
|
|
|
//多选规格查询
|
|
//多选规格查询
|
|
|
if($product_specs && is_string($product_specs)){
|
|
if($product_specs && is_string($product_specs)){
|
|
|
$product_specs = explode(',', $product_specs);
|
|
$product_specs = explode(',', $product_specs);
|