mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update NewsService.php
This commit is contained in:
parent
7a919fe42e
commit
5c89ea4946
@ -18,7 +18,6 @@ class NewsService extends Service
|
|||||||
* 同步文章数据统计
|
* 同步文章数据统计
|
||||||
* @param string $code 文章编号
|
* @param string $code 文章编号
|
||||||
* @param array $total 查询统计
|
* @param array $total 查询统计
|
||||||
* @throws \think\db\exception\DbException
|
|
||||||
*/
|
*/
|
||||||
public function syncNewsTotal(string $code, array $total = []): void
|
public function syncNewsTotal(string $code, array $total = []): void
|
||||||
{
|
{
|
||||||
@ -26,7 +25,7 @@ class NewsService extends Service
|
|||||||
foreach ($query->where(['code' => $code, 'status' => 2])->group('type')->cursor() as $item) {
|
foreach ($query->where(['code' => $code, 'status' => 2])->group('type')->cursor() as $item) {
|
||||||
$total[$item['type']] = $item['count'];
|
$total[$item['type']] = $item['count'];
|
||||||
}
|
}
|
||||||
$this->app->db->name('DataNewsItem')->where(['code' => $code])->update([
|
DataNewsItem::mk()->where(['code' => $code])->update([
|
||||||
'num_like' => $total[1] ?? 0, 'num_collect' => $total[2] ?? 0, 'num_comment' => $total[4] ?? 0,
|
'num_like' => $total[1] ?? 0, 'num_collect' => $total[2] ?? 0, 'num_comment' => $total[4] ?? 0,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user