songxingwei 2 years ago
parent
commit
6ae3eb39f4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      application/common.php

+ 2 - 2
application/common.php

@@ -1017,14 +1017,14 @@ function setqrcode($value,$name){
 //生成邀请二维码
 function setintivecode($user_id){
     $name = $user_id."_".time();
-    $address = 'http://'.$_SERVER['SERVER_NAME'].'/h5/login.html?invite_code='.$user_id;
+    $address = 'http://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/mine/zhuce?invite_code='.$user_id;
     $url = setqrcode($address,$name);
     return $url;
 }
 
 //邀请地址
 function getintiveaddress($user_id){
-    $address = 'http://'.$_SERVER['SERVER_NAME'].'/h5/login.html?invite_code='.$user_id;
+    $address = 'http://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/mine/zhuce?invite_code='.$user_id;
     return $address;
 }