作者 lyh

Merge branch 'develop' of http://47.244.231.31:8099/zhl/globalso-v6

... ... @@ -44,11 +44,11 @@ class APublicModel extends Base
->where('project_id', $project_id)->where('status', self::STATUS_ON)->count();
//获取项目的询盘数量
$inquiryNumber = 0;
// $countInfo = DB::table('gl_count')->where('project_id', $project_id)->orderBy('id', 'desc')
// ->first();
// if(!empty($countInfo)){
// @file_put_contents(storage_path('logs/lyh_error.log'), var_export($countInfo, true) . PHP_EOL, FILE_APPEND);
// $inquiryNumber = $countInfo['inquiry_num'] ?? 0;
$countInfo = DB::table('gl_count')->where('project_id', $project_id)->orderBy('id', 'desc')
->first();
if(!empty($countInfo)){
@file_put_contents(storage_path('logs/lyh_error.log'), var_export($countInfo, true) . PHP_EOL, FILE_APPEND);
$inquiryNumber = $countInfo['inquiry_num'] ?? 0;
// }
$data = ['product'=>$productNumber,'blog'=>$blogNumber,'news'=>$newsNumber,'key'=>$keyNumber,'inquiry'=>$inquiryNumber];
Cache::add('product_blog_news_'.$project_id,$data,30 * 60);
... ...