From 940dd1b292db4c5cc2df2f137fa46c37f2159898 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期四, 05 十二月 2024 18:06:01 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShareController.java | 29 +++++++++++++++++++++++------ 1 files changed, 23 insertions(+), 6 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShareController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShareController.java index 3450cb6..783f4e0 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShareController.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShareController.java @@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.ruoyi.common.core.domain.R; import com.ruoyi.common.core.web.controller.BaseController; +import com.ruoyi.common.security.service.TokenService; import com.ruoyi.other.api.domain.Share; import com.ruoyi.other.enums.ShareAddType; import com.ruoyi.other.enums.ShareAuditStatus; @@ -31,6 +32,8 @@ public class ShareController extends BaseController { @Resource private ShareService shareService; + @Resource + private TokenService tokenService; /** * 分享列表 @@ -46,14 +49,29 @@ } + @ApiOperation(value = "分享页列表", tags = {"小程序-推广中心"}) + @GetMapping("/recommand/list") + public R<List<Share>> recommandlist(){ + Long userid = tokenService.getLoginUserApplet().getUserid(); + return R.ok(shareService.list(new LambdaQueryWrapper<Share>().eq(Share::getAddType,2) + .eq(Share::getObjectId, userid))); + } + + + /** * 分享添加 */ - @ApiOperation(value = "小程序-个人中心-门店管理-分享添加", tags = {"分享添加-小程序"}) + @ApiOperation(value = "分享添加", tags = {"小程序-个人中心-门店管理-分享添加"}) @PostMapping public R<Void> add(@RequestBody Share share){ - share.setAddType(ShareAddType.STORE.getCode()); - share.setAuditStatus(ShareAuditStatus.WAIT.getCode()); + Long userid = tokenService.getLoginUserApplet().getUserid(); + if (share.getAddType()==1) { + share.setAuditStatus(ShareAuditStatus.WAIT.getCode()); + }else if (share.getAddType()==2){ + share.setAuditStatus(ShareAuditStatus.WAIT.getCode()); + share.setObjectId(userid.toString()); + } share.setDelFlag(0); share.setAppletShare(1); shareService.save(share); @@ -86,9 +104,8 @@ */ @ApiOperation(value = "分享详情", tags = {"小程序-个人中心-门店管理-分享详情-小程序"}) @GetMapping("/detail/{id}") - public R<Void> detail(@PathVariable("id") Integer id){ - shareService.getById(id); - return R.ok(); + public R<Share> detail(@PathVariable("id") Integer id){ + return R.ok(shareService.getById(id)); } -- Gitblit v1.7.1