|
|
@@ -52,7 +52,7 @@ class LowPriceGoods extends Controller
|
|
|
->orderByDesc('id')
|
|
|
->paginate($limit)->toarray();
|
|
|
// 分配数据
|
|
|
- if (!$result) return json_send(['code' => 'error', 'msg' => '暂无数据']);
|
|
|
+ if (!$result) return json_send(['code' => 'success', 'msg' => '获取成功', 'data' => []]);
|
|
|
if (isset($result['data']) && count($result['data']) > 0) {
|
|
|
foreach ($result['data'] as $key => $value) {
|
|
|
$result['data'][$key]['platform'] = isset($value['platform']) ? explode(',', $value['platform']) : '';
|