|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
- <el-dialog title="预计课耗详情" width="1000px" :visible.sync="courseVisible">
|
|
|
+ <el-dialog title="预计课耗详情" width="1000px" :visible.sync="courseVisible" @close="cancelHandel">
|
|
|
<el-form
|
|
|
:inline="true"
|
|
|
@submit="getList"
|
|
@@ -49,10 +49,10 @@
|
|
|
{{scope.row.preConsumerNum}}节
|
|
|
</div>
|
|
|
</template></el-table-column>
|
|
|
- <el-table-column prop="consumerNum" label="已排课时">
|
|
|
+ <el-table-column prop="courseNum" label="已排课时">
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
- {{scope.row.consumerNum}}节
|
|
|
+ {{scope.row.courseNum}}节
|
|
|
</div>
|
|
|
</template></el-table-column>
|
|
|
</el-table>
|
|
@@ -128,6 +128,10 @@ export default {
|
|
|
this.pageInfo.page = 1;
|
|
|
this.getList()
|
|
|
},
|
|
|
+ cancelHandel(){
|
|
|
+ this.searchForm.search='';
|
|
|
+ this.pageInfo.page = 1;
|
|
|
+ }
|
|
|
},
|
|
|
computed:{
|
|
|
onExport(){
|