diff --git a/app/admin/lists/store_product/StoreProductLists.php b/app/admin/lists/store_product/StoreProductLists.php index ae53e82c6..b2c5095ab 100644 --- a/app/admin/lists/store_product/StoreProductLists.php +++ b/app/admin/lists/store_product/StoreProductLists.php @@ -152,11 +152,13 @@ class StoreProductLists extends BaseAdminDataLists implements ListsSearchInterfa $item['status_msg'] = '下架|不常用|是否有替换'; } if ($order_type == 2) { - $price = StoreProductGroupPrice::where('group_id', 42)->where('product_id', $item['product_id'])->value('price'); - if ($price > 0) { - $item['price'] = $price; - $item['store_name'] = $item['store_name'] . '|活动价'; - } + // $price = StoreProductGroupPrice::where('group_id', 42)->where('product_id', $item['product_id'])->value('price'); + // if ($price > 0) { + // $item['price'] = $price; + // $item['store_name'] = $item['store_name'] . '|活动价'; + // } + $item['price'] = $item['cost']; + $item['store_name'] = $item['store_name'] . '|高级会员价'; }elseif($is_true == true && $userShip>0){ $item['price'] = $item['vip_price']; $item['store_name'] = $item['store_name'] . '|会员价';