Commit 99ffb6fe authored by 张伯涛's avatar 张伯涛

数据统计bug修改

parent 015b59b9
......@@ -135,7 +135,13 @@
</el-table-column>
</el-table>
</div>
<pagination
v-show="detailTotal>0"
:total="detailTotal"
:page.sync="detailQueryParams.page"
:limit.sync="detailQueryParams.rows"
@pagination="detailGetList"
/>
</el-drawer>
</div>
......@@ -252,7 +258,7 @@ export default {
}
],
// 抽屉列表查询参数
detailTotal: 20,
detailTotal: 0,
detailQueryParams: {
page: 1,
rows: 10,
......
......@@ -289,7 +289,7 @@ export default {
// },
],
// 抽屉列表查询参数
detailTotal: 20,
detailTotal: 0,
detailQueryParams: {
id: '',
column: '',
......
......@@ -129,7 +129,7 @@
</el-table-column>
<el-table-column label="试用课程数" align="center" prop="noPay">
<template slot-scope="scope">
<span style="color: #214e90;">{{ scope.row.studentNumber }}</span>
<span style="color: #214e90;">{{ scope.row.noPay }}</span>
</template>
</el-table-column>
<el-table-column label="完成必修课人次" align="center" prop="finish">
......@@ -196,6 +196,13 @@
:prop="column.prop"
/>
</el-table>
<pagination
v-show="detailTotal>0"
:total="detailTotal"
:page.sync="detailQueryParams.page"
:limit.sync="detailQueryParams.rows"
@pagination="detailGetList"
/>
</div>
</el-drawer>
......@@ -343,7 +350,7 @@ export default {
}
],
// 抽屉列表查询参数
detailTotal: 20,
detailTotal: 0,
detailQueryParams: {
page: 1,
rows: 10,
......
This diff is collapsed.
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