From 3cc41ba03659e9e51f26865fe0d04cf43fbc68fb Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期五, 08 三月 2024 18:15:31 +0800 Subject: [PATCH] Merge branch '2.0' of http://120.76.84.145:10101/gitblit/r/java/PlayPai into 2.0 --- cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/controller/WorldCupController.java | 11 ++++++++++- cloud-server-management/src/main/webapp/WEB-INF/view/system/advertisement/advertisement_add.html | 2 -- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/controller/WorldCupController.java b/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/controller/WorldCupController.java index 4a1769b..8281e5b 100644 --- a/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/controller/WorldCupController.java +++ b/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/controller/WorldCupController.java @@ -91,7 +91,16 @@ @Autowired private IWorldCupPaymentService worldCupPaymentService; - + /** + * 根据门店id获取门店关系数据 + * @param storeId + * @return + */ + @ResponseBody + @PostMapping("/worldCup/getWorldCupStoreListByStoreId") + public List<WorldCupStore> getWorldCupStoreListByStoreId(@RequestBody Integer storeId){ + return worldCupStoreService.list(new QueryWrapper<WorldCupStore>().eq("storeId", storeId)); + } @ResponseBody diff --git a/cloud-server-management/src/main/webapp/WEB-INF/view/system/advertisement/advertisement_add.html b/cloud-server-management/src/main/webapp/WEB-INF/view/system/advertisement/advertisement_add.html index e5ae7fc..b0f40a8 100644 --- a/cloud-server-management/src/main/webapp/WEB-INF/view/system/advertisement/advertisement_add.html +++ b/cloud-server-management/src/main/webapp/WEB-INF/view/system/advertisement/advertisement_add.html @@ -228,8 +228,6 @@ console.log(res) if (oneId == "1"){ res.innerHTML ="推荐像素:780x472px"; - }else if (oneId == "6" || oneId == "7") { - res.innerHTML ="推荐像素:宽780px,高不限制"; } else{ res.innerHTML ="推荐像素:780x440px"; -- Gitblit v1.7.1