Browse Source

修改小程序链接参数,统一环境版本为 'release'

yuanmingze 1 month ago
parent
commit
3adfa194ea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/wechat-redirect/index.vue

+ 1 - 1
src/views/wechat-redirect/index.vue

@@ -106,7 +106,7 @@ const getMiniappLinkParams = (redirectUrl: string) => {
   return {
     path: 'pages/index/index',
     query: `redirect=${encodeURIComponent(redirectUrl)}`,
-    envVersion: import.meta.env.VITE_APP_ENV === 'prod' ? 'release' : 'trial',
+    envVersion: 'release',
   } as const
 }