浏览代码

fix: 修改小程序配置(打开日志)

Gosowong 2 年之前
父节点
当前提交
730073048a
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10 0
      crmeb/crmeb/services/app/MiniProgramService.php

+ 10 - 0
crmeb/crmeb/services/app/MiniProgramService.php

@@ -101,6 +101,16 @@ class MiniProgramService
             $appId = isset($wechat['routine_appId']) ? trim($wechat['routine_appId']) : '';
             $appId = isset($wechat['routine_appId']) ? trim($wechat['routine_appId']) : '';
             $appsecret = isset($wechat['routine_appsecret']) ? trim($wechat['routine_appsecret']) : '';
             $appsecret = isset($wechat['routine_appsecret']) ? trim($wechat['routine_appsecret']) : '';
         }
         }
+        $config = [
+            'token' => isset($wechat['wechat_token']) ? trim($wechat['wechat_token']) : '',
+            'aes_key' => isset($wechat['wechat_encodingaeskey']) ? trim($wechat['wechat_encodingaeskey']) : '',
+            'debug' => true,
+            'log' => [
+                'level' => 'debug',
+                'permission' => 0777,
+                'file' => '/www/wwwroot/bz.wuht.net/crmeb/crmeb/runtime/log',
+            ],
+        ];
         $config['mini_program'] = [
         $config['mini_program'] = [
             'app_id' => $appId,
             'app_id' => $appId,
             'secret' => $appsecret,
             'secret' => $appsecret,