From 1976367b3cd31d47950768d05825281b99d2281a Mon Sep 17 00:00:00 2001 From: liu <1873441552@qq.com> Date: Sat, 15 Jun 2024 18:46:37 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=84=E7=95=99=E6=A8=A1=E6=9D=BF=E5=88=B0?= =?UTF-8?q?=E8=B4=A7=E7=9F=AD=E4=BF=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../logic/store_order/StoreOrderLogic.php | 8 ++++-- app/common/service/SmsService.php | 28 +++++++++++++------ .../store_order/StoreOrderController.php | 13 +++++++++ 3 files changed, 39 insertions(+), 10 deletions(-) diff --git a/app/common/logic/store_order/StoreOrderLogic.php b/app/common/logic/store_order/StoreOrderLogic.php index 9df2d5a1..e7608167 100644 --- a/app/common/logic/store_order/StoreOrderLogic.php +++ b/app/common/logic/store_order/StoreOrderLogic.php @@ -314,7 +314,7 @@ class StoreOrderLogic extends BaseLogic } - public function dealSendSms($param) + public function dealSendSms($param,$type = 0) { $code = generateRandomCode(); $phone = User::where('id',$param['uid'])->value('mobile'); @@ -322,8 +322,12 @@ class StoreOrderLogic extends BaseLogic throw new \Exception('用户未设置手机号'); } $template = getenv('SMS_TEMPLATE'); + if($type){ + $check =(new SmsService())->client($phone,$template,$code,1); + }else{ + $check =(new SmsService())->client($phone,$template,$code); + } - $check =(new SmsService())->client($phone,$template,$code); if($check){ $remark = $param['uid'].'_smsPay'; Cache::set($remark,$code,5*60); diff --git a/app/common/service/SmsService.php b/app/common/service/SmsService.php index d1270b1a..af0d86ba 100644 --- a/app/common/service/SmsService.php +++ b/app/common/service/SmsService.php @@ -45,18 +45,30 @@ class SmsService } - public function client($phone,$template,$code) + public function client($phone,$template,$code,$type = 0) { try{ $easySms = new EasySms($this->config); - $res = $easySms->send($phone, [ - 'content' => '您的验证码为: '.$code, - 'template' => $template, - 'data' => [ - 'code' => $code - ], - ]); + if($type){//预留发送到货短信 + $res = $easySms->send($phone, [ + 'content' => '您的验证码为: '.$code, + 'template' => $template, + 'data' => [ + 'code' => $code + ], + ]); + + }else{ + $res = $easySms->send($phone, [ + 'content' => '您的验证码为: '.$code, + 'template' => $template, + 'data' => [ + 'code' => $code + ], + ]); + } + if($res && $res['aliyun']['status'] == 'success'){ return true; }else{ diff --git a/app/store/controller/store_order/StoreOrderController.php b/app/store/controller/store_order/StoreOrderController.php index 2a08a4f1..8f4fb033 100644 --- a/app/store/controller/store_order/StoreOrderController.php +++ b/app/store/controller/store_order/StoreOrderController.php @@ -373,5 +373,18 @@ class StoreOrderController extends BaseAdminController } return $this->fail('支付失败'); } + + public function stocking() + { + $uid = $this->request->post('uid'); + $res = (new StoreOrderLogic())->dealSendSms(['uid'=>$uid],1); + if($res){ + return $this->success('发送成功',[],0,1); + }else{ + return $this->fail('发送失败'); + } + + + } }