- 343
+
+
{{title}}
+
+
+
+
+
+
+
+
+ 班级:
+ {{classname}}
+ |
+
+ 月份:
+ {{month}}
+ |
+
+ 月主题:
+ {{monththeme}}
+ |
+
+ 制表人:
+ {{tbr}}
+ |
+
+
+
+ {{h.label}}
+ |
+
+
+
+ {{monththeme}}
+ |
+ {{item.zc}} |
+ {{item.starttime}}---{{item.endtime}} |
+ {{themeactivityFormat(item.activityid)}} |
+ {{item.jzzc}} |
+
+
+ 本月微型课程 |
+ |
+
+
+ 备注 |
+ {{bz}} |
+
+
+ 教学主管审批 |
+ {{spyj}} |
+
+
+
+
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/ruoyi-ui/src/views/benyi/themeweekplan/index.vue b/ruoyi-ui/src/views/benyi/themeweekplan/index.vue
index 9b50983d0..90e32fe42 100644
--- a/ruoyi-ui/src/views/benyi/themeweekplan/index.vue
+++ b/ruoyi-ui/src/views/benyi/themeweekplan/index.vue
@@ -140,7 +140,6 @@
icon="el-icon-view"
@click="handleView(scope.row)"
v-hasPermi="['benyi:themeweekplan:query']"
- v-show="isShow(scope.row)"
>预览
diff --git a/ruoyi/src/main/java/com/ruoyi/project/benyi/controller/ByThemeMonthplanController.java b/ruoyi/src/main/java/com/ruoyi/project/benyi/controller/ByThemeMonthplanController.java
index 76b246166..5c4493a9e 100644
--- a/ruoyi/src/main/java/com/ruoyi/project/benyi/controller/ByThemeMonthplanController.java
+++ b/ruoyi/src/main/java/com/ruoyi/project/benyi/controller/ByThemeMonthplanController.java
@@ -12,6 +12,7 @@ import com.ruoyi.project.benyi.service.IByThemeTermplanitemService;
import com.ruoyi.project.benyi.service.IByThemeMonthplanitemService;
import com.ruoyi.project.common.SchoolCommon;
import com.ruoyi.project.system.service.IByClassService;
+import com.ruoyi.project.system.service.ISysUserService;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
@@ -52,6 +53,8 @@ public class ByThemeMonthplanController extends BaseController {
private IByThemeTermplanitemService byThemeTermplanitemService;
@Autowired
private IByThemeMonthplanitemService byThemeonthplanitemService;
+ @Autowired
+ private ISysUserService userService;
/**
* 查询主题整合月计划列表
@@ -89,7 +92,12 @@ public class ByThemeMonthplanController extends BaseController {
@PreAuthorize("@ss.hasPermi('benyi:thememonthplan:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") String id) {
- return AjaxResult.success(byThemeMonthplanService.selectByThemeMonthplanById(id));
+ AjaxResult ajax=AjaxResult.success();
+ ByThemeMonthplan byThemeMonthplan=byThemeMonthplanService.selectByThemeMonthplanById(id);
+ ajax.put(AjaxResult.DATA_TAG, byThemeMonthplan);
+ ajax.put("classname",byClassService.selectByClassById(byThemeMonthplan.getClassid()).getBjmc());
+ ajax.put("createusername",userService.selectUserById(byThemeMonthplan.getCreateuserid()).getNickName());
+ return ajax;
}
/**