Commit a0e4f677 authored by Mac's avatar Mac
parents 179d0b77 23155b25
...@@ -338,7 +338,7 @@ ...@@ -338,7 +338,7 @@
InnerRemark: '', //对内备注 InnerRemark: '', //对内备注
OutRemark: '', //对外备注 OutRemark: '', //对外备注
CompleteProgress: 0, //完成进度 CompleteProgress: 0, //完成进度
ClassType: 0, //班级类型 ClassType: 1, //班级类型
}, },
optionTitle: "", optionTitle: "",
saveCourseLoading: false, saveCourseLoading: false,
......
...@@ -91,6 +91,10 @@ ...@@ -91,6 +91,10 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
} }
.Show_SignBack{
margin:20px;
color:#2961FE;
}
</style> </style>
<template> <template>
<div v-if="!isShowSign"> <div v-if="!isShowSign">
...@@ -250,7 +254,7 @@ ...@@ -250,7 +254,7 @@
</div> </div>
<div v-else> <div v-else>
<div> <div>
<div><i class="iconfont icon-zuo1"></i>返回</div> <div class="Show_SignBack" @click="isShowSign=false"><i class="iconfont icon-zuo1"></i>返回</div>
<div class="StudentInfo_List"> <div class="StudentInfo_List">
<div> <div>
<div>授课老师</div> <div>授课老师</div>
...@@ -421,8 +425,9 @@ ...@@ -421,8 +425,9 @@
if (res.Code == 1) { if (res.Code == 1) {
this.isShowMenu = false; this.isShowMenu = false;
this.isShowEdit = false; this.isShowEdit = false;
this.getClassPlan(); var d = new Date(this.value);
var datetime = d.getFullYear() + '-' + (d.getMonth() + 1);
this.getClassPlan(datetime);
} }
}) })
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment