作者 wangzhi

xiugai

... ... @@ -570,9 +570,10 @@ class Yuyue extends Api
if ($Params['status'] == 1) {
$Bool = $this->Send($v['user_id'], $v['id']);
if ($Bool != false) {
echo 1;
$Mobile = Db::name('user')->where('id', $v['user_id'])->value('mobile');
if (!empty($Mobile) || $Mobile != '') {
$this->SendSms($v['mobile'], '【猎鹰飞行俱乐部】' . $Params['con'] . '空域情况:' . $Params['kong']);
$this->SendSms($Mobile, '【猎鹰飞行俱乐部】' . $Params['con'] . '空域情况:' . $Params['kong']);
}
}
}
... ...
... ... @@ -666,5 +666,6 @@ class Api
if (count($count) > 1) {
return false;
}
return true;
}
}
... ...