|
...
|
...
|
@@ -285,8 +285,9 @@ class WebTraffic extends Command |
|
|
|
->where('project_id', $project_id)->where('status', Category::STATUS_ACTIVE)->pluck('route','id')->toArray();
|
|
|
|
|
|
|
|
//已发布单页面
|
|
|
|
$data['urls_page'] = DB::connection('custom_mysql')->table('gl_web_custom_template')
|
|
|
|
->where('project_id', $project_id)->where('status', BCustomTemplate::STATUS_ACTIVE)->pluck('url', 'id')->toArray();
|
|
|
|
$data['urls_page'] = [];
|
|
|
|
// $data['urls_page'] = DB::connection('custom_mysql')->table('gl_web_custom_template')
|
|
|
|
// ->where('project_id', $project_id)->where('url', '<>', '404')->where('status', BCustomTemplate::STATUS_ACTIVE)->pluck('url', 'id')->toArray();
|
|
|
|
|
|
|
|
//已发布产品详情页
|
|
|
|
$data['urls_details'] = DB::connection('custom_mysql')->table('gl_product')
|
...
|
...
|
|