Browse Source

Merge branch 'master' of http://gits.hdlkeji.com:3000/zhangguidong/chuyu

Cherry 2 years ago
parent
commit
99eda1a7b1

+ 6 - 1
application/api/controller/Chuyutimedtask.php

@@ -84,7 +84,12 @@ class Chuyutimedtask extends Api
         $recovery_order_model->isUpdate(true, $where)->save($data);
         $this->success('ok');
     }
-
+    public function order_sms($data){
+        $TemplateCode = "SMS_262400702";
+        $phoneNumber = $data['mobile'];
+        $TemplateParam = json_encode(['code' => $data['score']]);
+        $this->SmsTemplate($TemplateCode, $phoneNumber, $TemplateParam);
+    }
     /**
      * 店铺注销退货(餐具)- 超时退货回收提醒 --发给b端配送员
      */

+ 5 - 0
application/api/controller/Index.php

@@ -45,5 +45,10 @@ class Index extends Api
         $data['rule_desc']='100积分='.$pre.'元'.config('site.score_rules_description');
         $this->success('积分规则',$data);
     }
+    public function order_sms(){
+        $MODEL = new Chuyutimedtask();
+        $data=['mobile'=>'15588500892','score'=>100];
+        $MODEL->order_sms($data);
+    }
 
 }