作者 郭盛
1 个管道 的构建 通过 耗费 1 秒

修改接口

@@ -1807,6 +1807,17 @@ class User extends Api @@ -1807,6 +1807,17 @@ class User extends Api
1807 //查询用户余额是否充足 1807 //查询用户余额是否充足
1808 if($user['money'] < $param['total']){ 1808 if($user['money'] < $param['total']){
1809 $data['is_enough'] = 2; 1809 $data['is_enough'] = 2;
  1810 +
  1811 + //发送短信,通知客户
  1812 + $mobile = 13780608990;
  1813 + $mobile1 = 15588311507;
  1814 + $content = "【仁甲看见SHOP】提醒您,您有新的苹果客户,客户电话为:$user[$mobile] ,请您及时回复!";
  1815 + //发送短信
  1816 + $send = new Pay();
  1817 + $send->sms($mobile,$content);
  1818 + $send->sms($mobile1,$content);
  1819 +
  1820 +
1810 $this->error('error',$data); 1821 $this->error('error',$data);
1811 1822
1812 }else{ 1823 }else{