3 Commity ce96ee4841 ... bb0ea63d6b

Autor SHA1 Wiadomość Data
  xiansin bb0ea63d6b Merge branch 'master' of ssh://git.9026.com:2212/xiansin/zhangsiye 2 lat temu
  xiansin be5ca4ce6d feat: 删除小程序test path 2 lat temu
  xiansin 2d77b2075b fix: 抖音二维码生成错误 2 lat temu
3 zmienionych plików z 5 dodań i 9 usunięć
  1. 4 1
      mini/manifest.json
  2. 0 7
      mini/pages.json
  3. 1 1
      server/app/Helper/ByteDance.php

+ 4 - 1
mini/manifest.json

xqd
@@ -75,7 +75,10 @@
     },
     "mp-toutiao" : {
         "usingComponents" : true,
-        "appid" : "tta9e8df5536d6b48b01"
+        "appid" : "tta9e8df5536d6b48b01",
+        "setting": {
+          "urlCheck": false
+        }
     },
     "uniStatistics" : {
         "enable" : false

+ 0 - 7
mini/pages.json

xqd
@@ -197,13 +197,6 @@
         "navigationBarTitleText": "用户须知",
         "enablePullDownRefresh": false
       }
-    },
-    {
-      "path": "pages/episode/test",
-      "style": {
-        "navigationBarTitleText": "用户须知",
-        "enablePullDownRefresh": false
-      }
     }
   ],
   "globalStyle": {

+ 1 - 1
server/app/Helper/ByteDance.php

xqd
@@ -183,7 +183,7 @@ class ByteDance extends BaseUniPlatform
         return $this->post($this->API::CREATE_QRCODE, [
             'appname'      => 'douyin',
             'access_token' => $this->accessToken,
-            'path'         =>urlencode('/pages/index/index?'."user_id=$userId"),
+            'path'         =>urlencode('pages/index/index?'."user_id=$userId"),
             'width'        => 600,
         ]);
     }