Commit 655172cb authored by zhengke's avatar zhengke

修改

parent 2e8aa449
This diff is collapsed.
......@@ -283,8 +283,8 @@
</div>
</div>
<div class="WorkObj_ImgList">
<el-scrollbar>
<template v-if="WorkObj.FileList&&WorkObj.FileList.length>0">
<el-scrollbar v-if="WorkObj.FileList&&WorkObj.FileList.length>0">
<template>
<div class="SchImg_List" style="width:50px;height:50px;border:0;"
v-for="(item,index) in WorkObj.FileList">
<el-image :src="item" style="width:100%;height:100%;" :preview-src-list="WorkObj.FileList">
......
......@@ -35,19 +35,25 @@
<q-btn @click="changeMenu(2)" v-if="AccountType==2 || ispower==true" flat :color="chosenMenu==2?'primary':'blue-grey-14'" :class="[chosenMenu==2?'text-weight-bold':'']" label="备课管理">
</q-btn>
<q-btn flat @click="changeMenu(3)" :color="chosenMenu==3?'primary':'blue-grey-14'" :class="[chosenMenu==3?'text-weight-bold':'']" label="我的排班计划"></q-btn>
<q-btn flat @click="changeMenu(4)" v-if="AccountType==2" :color="chosenMenu==4?'primary':'blue-grey-14'" :class="[chosenMenu==4?'text-weight-bold':'']" label="我的上课计划"></q-btn>
</div>
<div v-if="chosenMenu==1" class="flex col" style="flex: 1">
<okr v-if="okrMenu==1"></okr>
<align-view v-if="okrMenu==2"></align-view>
</div>
<div v-if="chosenMenu==2" class="col" style="height: 750px;overflow: auto">
<div v-if="chosenMenu==2" class="col comWorkDiv" style="overflow: auto">
<teachplan></teachplan>
</div>
<!-- 备课管理 -->
<div v-if="chosenMenu==3" style="height: 750px;overflow: auto">
<div v-if="chosenMenu==3" class="comWorkDiv" style="overflow: auto">
<mySchedule></mySchedule>
</div>
<!-- 我的上课计划 -->
<div v-if="chosenMenu==4" class="comWorkDiv" style="overflow: auto">
<myClassmate></myClassmate>
</div>
<!-- zk新增公告弹窗 -->
<notice-form v-if="isShowNotice" @fathergoBefore="fathergoBefore" @fathergoAfter="fathergoAfter" :seting-obj="noticeObj" @close="closeNoticeForm">
</notice-form>
......@@ -66,6 +72,7 @@
import alignView from './okr/okr-align-view'
import noticeForm from '../components/course/notice-form'
import mySchedule from './scheduling/mySchedule'
import myClassmate from './scheduling/myClassmate';
export default {
components:{
......@@ -73,7 +80,8 @@
okr,
alignView,
noticeForm,
mySchedule
mySchedule,
myClassmate
},
name: 'PageIndex',
data(){
......@@ -216,4 +224,7 @@
margin: 0;
padding: 10px 20px;
}
.comWorkDiv{
height: 100vh
}
</style>
This diff is collapsed.
<style>
.myClassMate .planTabDiv{
height:calc(100vh - 290px);
max-height:calc(100vh - 290px);
}
</style>
<template>
<div class="page-body MainPlan myClassMate">
<classmateForm ref="classmate"></classmateForm>
</div>
</template>
<script>
import classmateForm from '../../components/course/classmate-form';
export default {
meta: {
title: "我的上课计划"
},
components: {
classmateForm
},
data() {
return {
}
},
created() {
},
mounted() {
let userinfo = this.getLocalStorage();
let AccountId = userinfo.AccountId;
this.$refs.classmate.getPlanList(null,null,AccountId,0);
},
methods: {
},
}
</script>
<style lang="sass">
@import url('~assets/css/table.sass')
</style>
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