|
@@ -34,13 +34,15 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="title" :class="[courseScheduleComplaints.length > 0 ? 'teacher' : '']">老师评价</div>
|
|
|
- <div v-if="courseScheduleReview.length > 0">
|
|
|
- <van-panel>
|
|
|
+ <div v-if="courseScheduleReviewList.length > 0">
|
|
|
+ <van-panel v-for="(item, index) in courseScheduleReviewList" :key="index">
|
|
|
<div slot="header" class="van-hairline--bottom" style="display: flex;">
|
|
|
- <div class="header"><img src="../../assets/images/app/icon_student.png" alt="">李小明</div>
|
|
|
- <div class="header"><img src="../../assets/images/app/icon_student.png" alt="">李小明</div>
|
|
|
+ <div class="header">
|
|
|
+ <img v-if="item.studentAvatar" :src="item.studentAvatar" alt="">
|
|
|
+ <img v-else src="../../assets/images/app/icon_student.png" alt="">{{ item.studentName }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <div slot="default" class="content">盼望着,盼望着,东风来了,春天的脚步近了。一切都像刚睡醒的样子,欣欣然张开了眼。山朗润起来了,水涨起来</div>
|
|
|
+ <div slot="default" class="content">{{ item.memo }}</div>
|
|
|
</van-panel>
|
|
|
</div>
|
|
|
<div v-else>
|
|
@@ -70,7 +72,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="button-group">
|
|
|
+ <div class="button-group" v-if="courseScheduleReviewList.length <= 0">
|
|
|
<van-button type="primary" @click="onSubmit" round size="large">确认</van-button>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -91,7 +93,7 @@ export default {
|
|
|
teacherClassHeadInfo: {},
|
|
|
courseScheduleReview: [], // 学生评价
|
|
|
courseScheduleComplaints: [], // 老师评价
|
|
|
- courseScheduleReviewList: {},
|
|
|
+ courseScheduleReviewList: [],
|
|
|
review4StudentIds: {},
|
|
|
students: [], // 学生列表
|
|
|
contentall: null, // 回复内容
|
|
@@ -114,7 +116,7 @@ export default {
|
|
|
}
|
|
|
this.courseScheduleReview = tempResult.courseScheduleReview ? tempResult.courseScheduleReview : []
|
|
|
this.courseScheduleComplaints = tempResult.courseScheduleComplaints ? tempResult.courseScheduleComplaints : []
|
|
|
- this.courseScheduleReviewList = tempResult.courseScheduleReviewList ? tempResult.courseScheduleReviewList : {}
|
|
|
+ this.courseScheduleReviewList = tempResult.courseScheduleReviewList ? tempResult.courseScheduleReviewList : []
|
|
|
this.review4StudentIds = tempResult.review4StudentIds ? tempResult.review4StudentIds : {}
|
|
|
this.students = tempResult.students ? tempResult.students : []
|
|
|
tempResult.students.forEach(item => {
|