|
...
|
...
|
@@ -63,7 +63,7 @@ class ProductController extends BaseController |
|
|
|
foreach ($lists['list'] as $k=>$v){
|
|
|
|
$route = getRouteMap(RouteMap::SOURCE_PRODUCT,$v['id'], 0, true);
|
|
|
|
$v['url'] = $this->user['domain'] . ($route['route'] ?? '');
|
|
|
|
$v['pv'] = $route['pv'];
|
|
|
|
$v['pv'] = $route['pv'] ?? '';
|
|
|
|
$v['category_id_text'] = $this->categoryName($v['id'],$cate_data);
|
|
|
|
$v['keyword_id_text'] = $this->keywordName($v['keyword_id'],$key_data);
|
|
|
|
$v['created_uid_text'] = $userModel->getName($v['created_uid']);
|
...
|
...
|
|