Compare commits

...

2 Commits

Author SHA1 Message Date
limu 105d335647 问题修复 9 months ago
limu c8868a594e 1 9 months ago
  1. 4
      app/api/model/Goods.php
  2. 9
      app/api/service/Goods.php

@ -235,7 +235,6 @@ class Goods extends GoodsModel
'is_change' => 0, 'is_change' => 0,
'status' => 1, 'status' => 1,
])->order('id desc')->find(); ])->order('id desc')->find();
if ($info) { if ($info) {
$goods = explode(',', $info->goods_list); $goods = explode(',', $info->goods_list);
@ -267,7 +266,6 @@ class Goods extends GoodsModel
public function presaleCateList() public function presaleCateList()
{ {
$info = PreSale::where([ $info = PreSale::where([
'store_id' => request()->header()['storeid'], 'store_id' => request()->header()['storeid'],
'is_change' => 0, 'is_change' => 0,
@ -283,8 +281,8 @@ class Goods extends GoodsModel
'a.status' => 10, 'a.status' => 10,
'c.parent_id' => 0, 'c.parent_id' => 0,
])->whereIn('a.goods_id', $goods)->field('c.*,a.sales_initial,a.sales_actual')->select()->toArray(); ])->whereIn('a.goods_id', $goods)->field('c.*,a.sales_initial,a.sales_actual')->select()->toArray();
$list = $this->removeDuplicatesByField($list, 'category_id'); $list = $this->removeDuplicatesByField($list, 'category_id');
$info['end_time'] = strtotime($info->p_time) - time();
$res['info'] = $info; $res['info'] = $info;
$res['category'] = $list; $res['category'] = $list;
return $res; return $res;

@ -52,8 +52,7 @@ class Goods extends GoodsService
public function getCommonConfig() public function getCommonConfig()
{ {
//todo wmc1新品首发背景图 2限时秒杀背景图 3排行榜背景图 4大牌正品是轮播 //todo wmc1新品首发背景图 2限时秒杀背景图 3排行榜背景图 4大牌正品是轮播 5预售规则
switch (request()->get('type')) { switch (request()->get('type')) {
case 1: case 1:
$data['imgurl'] = 'https://www.saas.njrenzhou.com/uploads/10001/20240131/bdc5f17f3ff8c53ce0853177bc4f1917.png'; $data['imgurl'] = 'https://www.saas.njrenzhou.com/uploads/10001/20240131/bdc5f17f3ff8c53ce0853177bc4f1917.png';
@ -73,6 +72,12 @@ class Goods extends GoodsService
]; ];
return $data; return $data;
break; break;
case 5:
$data['imgurl'] = [
'http://qiniu.shop.royaum.com.cn/10001/20240201/13f2e675794e25176352fc039dfb6dcb.jpg',
];
return $data;
break;
} }
return []; return [];
} }

Loading…
Cancel
Save