wangxiaodong 3 years ago
parent
commit
0a6155ada3
2 changed files with 5 additions and 5 deletions
  1. 4 4
      addon/weapp/model/Weapp.php
  2. 1 1
      app/model/verify/Verify.php

+ 4 - 4
addon/weapp/model/Weapp.php

@@ -71,7 +71,7 @@ class Weapp extends BaseModel
      * @param unknown $param
      */
     public function createQrcode($param) {
-        //try {
+        try {
             $checkpath_result = $this->checkPath($param['qrcode_path']);
             if($checkpath_result["code"] != 0) return $checkpath_result;
             
@@ -87,15 +87,15 @@ class Weapp extends BaseModel
                 'page' => substr($param['page'], 1),
                 'width' => isset($param['width']) ? $param['width'] : 120
             ]);
-            echo "<pre>";print_r($response);exit;
+            //echo "<pre>";print_r($response);exit;
             if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {
                 $filename = $param['qrcode_path'] . '/';
                 $filename .= $response->saveAs($param['qrcode_path'], $param['qrcode_name'] . '_' . $param['app_type'] . '.png');
                 return $this->success(['path' => $filename]);
             }
-       /* } catch (\Exception $e) {
+        } catch (\Exception $e) {
             return $this->error('', $e->getMessage());
-        }*/
+        }
     }
     
     /**

+ 1 - 1
app/model/verify/Verify.php

@@ -232,7 +232,7 @@ class Verify extends BaseModel
             'qrcode_name' => $verify_type.'_'.$code ,
         ];
         $res = event('Qrcode', $data, true);
-        echo "<pre>";print_r($res);exit;
+        //echo "<pre>";print_r($res);exit;
         return $res;
     }
 }