xxxrrrdddd hace 3 años
padre
commit
04e41975e9

+ 8 - 2
application/common.php

@@ -494,14 +494,20 @@ function payment(User $user){
     }else{
         $appid=config('site.sender_appid');
     }
+    $cert=config('site.mch_cert');
+    $key=config('site.mch_key');
+    $cert_path=RUNTIME_PATH.'/mch_cert.pem';
+    $key_path=RUNTIME_PATH.'/key';
+    file_put_contents($cert_path,$cert);
+    file_put_contents($key_path,$key);
     $config = [
         // 必要配置
         'app_id'             => $appid,
         'mch_id'             => config('site.mch_id'),
         'key'                => config('site.mch_secret'),
         // 如需使用敏感接口(如退款、发送红包等)需要配置 API 证书路径(登录商户平台下载 API 证书)
-        'cert_path'          => 'path/to/your/cert.pem', // XXX: 绝对路径!!!!
-        'key_path'           => 'path/to/your/key',      // XXX: 绝对路径!!!!
+        'cert_path'          => $cert_path, // XXX: 绝对路径!!!!
+        'key_path'           => $key_path,      // XXX: 绝对路径!!!!
         'notify_url'         => '默认的订单回调地址',     // 你也可以在下单时单独设置来想覆盖它
     ];
     $p=Factory::payment($config);

+ 3 - 0
application/extra/site.php

@@ -50,4 +50,7 @@ return array (
   'order_refund_land' => '20',
   'order_refund_air' => '30',
   'tmap_key' => 'YV7BZ-7IFWV-GWDPV-U2C5Q-2XNT5-MNBY6',
+  'mch_key' => '',
+  'mch_cert' => '',
+  'settle_type' => '1',
 );

+ 1 - 1
application/extra/upload.php

@@ -21,7 +21,7 @@ return [
     /**
      * 可上传的文件类型
      */
-    'mimetype'  => 'jpg,png,bmp,jpeg,gif,zip,rar,xls,xlsx,wav,mp4,mp3,pdf',
+    'mimetype'  => 'jpg,png,bmp,jpeg,gif,zip,rar,xls,xlsx,wav,mp4,mp3,pdf,pem,key',
     /**
      * 是否支持批量上传
      */

+ 1 - 1
public/assets/js/backend/user_money_log.js

@@ -26,6 +26,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                     [
                         //{checkbox: true},
                         {field: 'id', title: __('ID')},
+                        {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
                         {field: 'type', title: __('Type'), searchList: types, formatter: Table.api.formatter.normal},
                         {field: 'money', title: __('Money'), operate: 'BETWEEN'},
                         {field: 'before', title: __('Before'), operate: 'BETWEEN'},
@@ -40,7 +41,6 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                             formatter: Table.api.formatter.datetime
                         },
                         //{field: 'is_log', title: __(''),},
-                        {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
                         //{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
                     ]
                 ],