feat: 添加新的API功能;修改ProductLists.php文件,在查询产品列表时增加对每个产品添加标签的功能,返回带有标签的产品列表。

This commit is contained in:
mkm 2024-07-10 09:59:30 +08:00
parent 9babb4f430
commit a269e4c0dd

View File

@ -96,7 +96,11 @@ class ProductLists extends BaseApiDataLists implements ListsSearchInterface, Lis
->limit($this->limitOffset, $this->limitLength)
->order($order)
// ->page($this->limitOffset +1,$this->limitLength)
->select()->toArray();
->select()->each(function ($item) {
$item['tag']=' 赠10%品牌礼品券 ';
return $item;
})
->toArray();
}