作者 lyh

gx小语种监控

... ... @@ -314,6 +314,10 @@ class KeywordLogic extends BaseLogic
if(!empty($productIdArr)){
$productModel = new Product();
$productList = $productModel->list(['id'=>['in',$productIdArr]],['id','title','route']);
foreach ($productList as $k => $v){
$v['route'] = $this->user['domain'].$v['route'];
$productList[$k] = $v;
}
}
return $this->success($productList);
}
... ...