| | |
| | | $data[] = [ |
| | | 'product_id' => $product['product_id'], |
| | | 'product_name' => $product['product_name'], |
| | | 'cart' => $product['cart'], |
| | | 'product_sku' => $product['product_sku'], |
| | | 'selling_point' => $product['selling_point'], |
| | | 'image' => $product['image'][0]['file_path'], |
| | | 'product_image' => $product['image'][0]['file_path'], |
| | |
| | | { |
| | | // 获取文章数据 |
| | | $model = new Article; |
| | | $articleList = $model->getList($item['params']['auto']['category'], $item['params']['auto']['showNum']); |
| | | $articleList = $model->getList($item['params']['auto']['category'], $item['params']['auto']['showNum'],0); |
| | | return $articleList->isEmpty() ? [] : $articleList->toArray()['data']; |
| | | } |
| | | |
| | |
| | | { |
| | | // 获取头条数据 |
| | | $model = new Article; |
| | | $articleList = $model->getList($item['params']['auto']['category'], $item['params']['auto']['showNum']); |
| | | $articleList = $model->getList($item['params']['auto']['category'], $item['params']['auto']['showNum'],0); |
| | | return $articleList->isEmpty() ? [] : $articleList->toArray()['data']; |
| | | } |
| | | |