dev
All checks were successful
Deploy to Production / deploy (push) Successful in 14s

This commit is contained in:
珂珂 2024-12-09 15:19:27 +08:00
parent 669b0cbfce
commit c822f2ab09

View File

@ -122,7 +122,6 @@ public function action_push2contact()
->orderBy('id')
->take($num)
->get();
$items->push($items1);
$num = $this->ask('ID 倒叙取出', 100);
$items2 = Testdrive::query()
@ -131,7 +130,8 @@ public function action_push2contact()
->orderBy('id', 'desc')
->take($num)
->get();
$items->push($items2);
$items = $items->merge($items1)->merge($items2);
// 根据手机号码去除重
$items = $items->unique('mobile');