|
...
|
...
|
@@ -58,6 +58,10 @@ class SyncInquiryRelay extends Command |
|
|
|
if (isset($result['status']) && $result['status'] == 200) {
|
|
|
|
$data = $result['data'] ?? [];
|
|
|
|
foreach ($data as $item) {
|
|
|
|
if (substr($item['phone'], 0, 3) == '+86') {
|
|
|
|
//+86区号过滤
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$this->saveDate($item, $item['source_type']);
|
|
|
|
}
|
|
|
|
}
|
...
|
...
|
|