chunping 3 жил өмнө
parent
commit
1b30e8197b

+ 1 - 1
mp-admin/src/main/java/com/qs/mp/web/controller/api/user/UserShareController.java

@@ -42,7 +42,7 @@ public class UserShareController extends BaseApiController {
 		String boxId = jsonObject.getString("boxId"); // 票组ID
 		String type = jsonObject.getString("type"); // 分享类型,channel/user
 		Long userId = SecurityUtils.getUserId();
-		String rst = wxUrlLinkService.generateCode("pages/ticketBox/detail", "boxId=" + boxId + "&suid=" + userId + "&type=" + type, userAppId);
+		String rst = wxUrlLinkService.generateUnlimitCode("pages/ticketBox/detail", "boxId=" + boxId + "&suid=" + userId + "&type=" + type, userAppId);
 		return new AjaxResult(Type.SUCCESS, "", rst);
 	}
 }