소스 검색

渠道邀请码

chunping 3 년 전
부모
커밋
2233a95594
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      mp-admin/src/main/java/com/qs/mp/web/controller/api/channel/ChannelInviteController.java

+ 1 - 1
mp-admin/src/main/java/com/qs/mp/web/controller/api/channel/ChannelInviteController.java

@@ -80,7 +80,7 @@ public class ChannelInviteController extends BaseApiController {
 			return AjaxResult.success(channel.getChannelId());
 		}
 		String type = jsonObject.getString("type");
-		String rst = wxUrlLinkService.generateCode("", "id=" + channelId + ",type=" + type);
+		String rst = wxUrlLinkService.generateCode("/pages/login/invitation", "id=" + channelId + ",type=" + type);
 		return AjaxResult.success(rst);
 	}