|
@@ -42,8 +42,8 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-select placeholder="收费类型" v-model="searchForm.isFree" clearable>
|
|
|
- <el-option label="付费" value="1"></el-option>
|
|
|
- <el-option label="免费" value="0"></el-option>
|
|
|
+ <el-option label="付费" value="0"></el-option>
|
|
|
+ <el-option label="免费" value="1"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
@@ -204,7 +204,7 @@
|
|
|
<el-rate v-model="courseScheduleComplaints[0].score" disabled text-color="#ff9900"></el-rate>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <el-input type="textarea" v-model="courseScheduleComplaints.reason"></el-input>
|
|
|
+ <el-input type="textarea" v-model="courseScheduleComplaints[0].reason" disabled></el-input>
|
|
|
</div>
|
|
|
<div v-if="courseScheduleReview">
|
|
|
<div class="rightCell" v-if="courseScheduleReview">
|
|
@@ -360,6 +360,7 @@ export default {
|
|
|
obj.hasHandHomework = this.searchForm.hasHandHomework || null;
|
|
|
obj.hasReview = this.searchForm.hasReview || null;
|
|
|
obj.courseReview = this.searchForm.courseReview || null;
|
|
|
+ obj.search = this.searchForm.search;
|
|
|
if(this.searchForm.month.length > 0){
|
|
|
obj.startTime = this.searchForm.month[0];
|
|
|
obj.endTime = this.searchForm.month[1];
|