Commit e02c4ac9 authored by Mac's avatar Mac

1

parent d05407ab
......@@ -10,10 +10,10 @@
</div>
</div>
<div v-if="model=='one'" class="flex flex-center" style="flex: 1;min-height: 800px">
<div v-if="model=='one'" class="flex flex-center" style="flex: 1;min-height: 750px">
<img style="width:250px;" alt="Quasar logo" src="../assets/images/logo.png" />
</div>
<div v-if="model=='two'" style="padding-bottom: 50px;height: 800px;overflow: auto">
<div v-if="model=='two'" style="padding-bottom: 50px;min-height: 750px;overflow: auto">
<teachplan></teachplan>
</div>
</q-page>
......@@ -80,6 +80,7 @@
<style>
.home .box{
width: 100%;
height: 50px;
}
.home {
margin: 0;
......@@ -87,9 +88,7 @@
::-webkit-scrollbar {
display: none; /* Chrome Safari */
}
.box{
margin: 0 0 15px;
}
.box .el-tabs__header{
margin: 0;
}
......
......@@ -134,7 +134,7 @@
<div class="text-title">指導内容</div>
<div class="marginl-15 margint-15 row" style="align-items: flex-start" v-for="(item,index) in data.LessonPlanList" :key="index">
<div class="text12-n width70">{{item.CourseName}}</div>
<div class="text12-o " style="flex:1">{{item.CourseTitle}}</div>
<div class="text14-o " style="flex:1">{{item.CourseTitle}}</div>
</div>
</div>
......@@ -142,7 +142,13 @@
<div class="text-title">指導項目</div>
<div class="marginl-15 margint-15 row" style="align-items: flex-start" v-for="(item,index) in data.LessonPlanList" :key="index">
<div class="text12-n width70">{{item.CourseName}}</div>
<div class="text12-o" style="margin-right:10px;" v-for="(x,y) in item.LessonPlanProjectsList[0].ProjectContentList" :key="y">{{x}}</div>
<!-- <div class="text12-o" style="margin-right:10px;" v-for="(x,y) in item.LessonPlanProjectsList[0].ProjectContentList" :key="y">{{x}}</div>-->
<div class="text14-o" style="flex:1" v-for="(x,y) in item.LessonPlanProjectsList" :key="y" >
<div v-for="(xx,yy) in x.ProjectContentList" :key="yy">
{{yy+1}}{{xx}}
</div>
</div>
</div>
</div>
......@@ -150,10 +156,11 @@
<div class="text-title">上课内容</div>
<div class="marginl-15 margint-15 row" style="align-items: flex-start;flex-wrap: nowrap" v-for="(item,index) in data.LessonPlanList" :key="index">
<div class="text12-n width70">{{item.CourseName}}</div>
<div class="text12-o" style="flex:1">
<div class="text14-o" style="flex:1">
<div class="column" v-for="(x,y) in item.LessonPlanDetailsList" :key="y">
<div class="text14-l">{{x.Duration}}分钟-{{x.DurationEndTime}}</div>
<div class="text12-o" style="margin-top:5px;" v-html="x.ProjectContent"></div>
<div class="text14-o" v-html="x.ProjectContent"></div>
<div style="width: 100%;background: #F0F5FB;border-radius: 5px;margin: 10px 0">
<q-input
......@@ -172,7 +179,7 @@
</div>
</div>
</div>
<q-btn color="accent" size="sm" class="q-mr-md marginl-15 margint-15" label="提交" @click="saveOrderInfo()" :loading="Dloading" />
<q-btn color="accent" size="sm" class="q-mr-md marginl-15 margint-15" label="提交" @click="saveOrderInfo()" :loading="Dloading" v-if="AccountType==false"/>
</div>
......@@ -266,7 +273,7 @@
},
data:{},
CommentList:[],
AccountType:false
AccountType:true
}
},
created(){
......
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