Преглед изворни кода

Merge branch 'master' of e.coding.net:zdap/weixiu/weixiu_api into tmp-master

liugc пре 1 година
родитељ
комит
340b58bd68
1 измењених фајлова са 13 додато и 0 уклоњено
  1. 13 0
      app/common/service/wechat/WeChatMnpService.php

+ 13 - 0
app/common/service/wechat/WeChatMnpService.php

@@ -108,4 +108,17 @@ class WeChatMnpService
     }
 
 
+    // 生成微信小程序url_scheme码
+    public function getGeneratescheme($page,$query='',$env_version='release')
+    {
+        return $this->app->getClient()->postJson('wxa/generatescheme', [
+            'jump_wxa' => [
+                'path'=>$page,
+                'query'=>$query,
+                'env_version'=>$env_version
+            ]
+        ]);
+    }
+
+
 }