瀏覽代碼

Merge branch 'dev' into 'mp-server-test'

用户分享

See merge request quanshu/mp-server!301
zhong chunping 3 年之前
父節點
當前提交
c3840f073b
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      mp-admin/src/main/java/com/qs/mp/web/controller/api/user/UserShareController.java

+ 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/lucky/index", "boxId=" + boxId + "&suid=" + userId + "&type=" + type, userAppId);
+		String rst = wxUrlLinkService.generateCode("pages/ticketBox/detail", "boxId=" + boxId + "&suid=" + userId + "&type=" + type, userAppId);
 		return new AjaxResult(Type.SUCCESS, "", rst);
 	}
 }