From f11278bce24e16d50ac726c0da07e171f2c1e8c2 Mon Sep 17 00:00:00 2001 From: zhanglipeng Date: Thu, 26 Nov 2020 15:21:11 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=BB=E9=A2=98=E6=95=B4=E5=90=88bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/api/benyi/activity.js | 8 +++ .../src/views/benyi/thememonthplan/table.vue | 56 ++++++++++++------- .../src/views/benyi/themeweekplan/data.vue | 4 +- .../src/views/benyi/themeweekplan/index.vue | 2 +- .../src/views/benyi/themeweekplan/table.vue | 12 ++-- .../controller/ByThemeActivityController.java | 14 +++++ .../benyi/mapper/ByThemeActivityMapper.java | 8 +++ .../service/IByThemeActivityService.java | 8 +++ .../impl/ByThemeActivityServiceImpl.java | 11 ++++ .../mybatis/benyi/ByThemeActivityMapper.xml | 9 +++ 10 files changed, 105 insertions(+), 27 deletions(-) diff --git a/ruoyi-ui/src/api/benyi/activity.js b/ruoyi-ui/src/api/benyi/activity.js index 4120c7d6f..284dc1d54 100644 --- a/ruoyi-ui/src/api/benyi/activity.js +++ b/ruoyi-ui/src/api/benyi/activity.js @@ -58,4 +58,12 @@ export function listActivityByThemeId(id) { url: '/benyi/activity/listbythemeid/' + id, method: 'post' }) +} + +// 查询主题整合活动 +export function listActivityById(id) { + return request({ + url: '/benyi/activity/listbyid/' + id, + method: 'post' + }) } \ No newline at end of file diff --git a/ruoyi-ui/src/views/benyi/thememonthplan/table.vue b/ruoyi-ui/src/views/benyi/thememonthplan/table.vue index 130fca1db..f95d43a36 100644 --- a/ruoyi-ui/src/views/benyi/thememonthplan/table.vue +++ b/ruoyi-ui/src/views/benyi/thememonthplan/table.vue @@ -1,9 +1,15 @@