From 80ad124580aab6907f51708e00afdbfc2bd61353 Mon Sep 17 00:00:00 2001
From: sk1551 <15175617877@163.com>
Date: Tue, 3 Nov 2020 11:15:00 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B8=B8=E6=88=8F=E6=95=B0?=
=?UTF-8?q?=E5=AD=A6=E8=AF=A6=E7=BB=86=20=E9=80=89=E6=8B=A9=E6=95=B0?=
=?UTF-8?q?=E5=AD=A6=E6=96=B9=E6=A1=88bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/views/benyi/mathtermplan/index.vue | 1 +
.../benyi/mathtermplanapproval/index.vue | 433 ++++++++++++++++++
.../benyi/themetermplanapproval/index.vue | 2 +-
.../controller/ByMathTermplanController.java | 1 +
4 files changed, 436 insertions(+), 1 deletion(-)
create mode 100644 ruoyi-ui/src/views/benyi/mathtermplanapproval/index.vue
diff --git a/ruoyi-ui/src/views/benyi/mathtermplan/index.vue b/ruoyi-ui/src/views/benyi/mathtermplan/index.vue
index 02bd8159f..65c19c342 100644
--- a/ruoyi-ui/src/views/benyi/mathtermplan/index.vue
+++ b/ruoyi-ui/src/views/benyi/mathtermplan/index.vue
@@ -418,6 +418,7 @@ export default {
this.title = "修改游戏数学学期计划";
const time = [];
time.push(response.data.startmonth);
+ console.log(response.data.startmonth);
time.push(response.data.endmonth);
this.form.startmonth = time;
});
diff --git a/ruoyi-ui/src/views/benyi/mathtermplanapproval/index.vue b/ruoyi-ui/src/views/benyi/mathtermplanapproval/index.vue
new file mode 100644
index 000000000..ad72033eb
--- /dev/null
+++ b/ruoyi-ui/src/views/benyi/mathtermplanapproval/index.vue
@@ -0,0 +1,433 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 审批
+
+
+
+
+
+
+
+
+
+ {{ scope.row.name }}
+
+
+
+
+
+ {{ parseTime(scope.row.startmonth, "{y}-{m}") }}
+
+
+
+
+ {{ parseTime(scope.row.endmonth, "{y}-{m}") }}
+
+
+
+
+
+
+
+ 审批
+ 预览
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 退回
+ 通过
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ruoyi-ui/src/views/benyi/themetermplanapproval/index.vue b/ruoyi-ui/src/views/benyi/themetermplanapproval/index.vue
index 2b90343e5..cacad9371 100644
--- a/ruoyi-ui/src/views/benyi/themetermplanapproval/index.vue
+++ b/ruoyi-ui/src/views/benyi/themetermplanapproval/index.vue
@@ -218,7 +218,7 @@ export default {
},
methods: {
isShow(row) {
- console.log(row.status);
+ // console.log(row.status);
if (row.status == "1") {
return true;
} else {
diff --git a/ruoyi/src/main/java/com/ruoyi/project/benyi/controller/ByMathTermplanController.java b/ruoyi/src/main/java/com/ruoyi/project/benyi/controller/ByMathTermplanController.java
index e387787f3..257be9ecd 100644
--- a/ruoyi/src/main/java/com/ruoyi/project/benyi/controller/ByMathTermplanController.java
+++ b/ruoyi/src/main/java/com/ruoyi/project/benyi/controller/ByMathTermplanController.java
@@ -60,6 +60,7 @@ public class ByMathTermplanController extends BaseController
byMathTermplan.setSchoolid(SecurityUtils.getLoginUser().getUser().getDept().getDeptId());
String classId = schoolCommon.getClassId();
List list = null;
+ // 判断当前是否为幼儿园账号
if (schoolCommon.isSchool() && !schoolCommon.isStringEmpty(classId)) {
byMathTermplan.setClassid(classId);
}