|
|
@@ -123,7 +123,7 @@
|
|
|
:data="tableData"
|
|
|
:height="tableHeight"
|
|
|
v-loading="loading" stripe>
|
|
|
- <el-table-column type="index" label="序号" width="50"></el-table-column>
|
|
|
+ <el-table-column type="index" label="序号" :index="indexMethod" width="50"></el-table-column>
|
|
|
<el-table-column prop="name" label="账单名称" width="180"></el-table-column>
|
|
|
<el-table-column prop="companyName" label="缴费单位" width="180"></el-table-column>
|
|
|
<el-table-column prop="personName" label="推送用户" width="150">
|
|
|
@@ -311,6 +311,9 @@ export default {
|
|
|
},1000);
|
|
|
},
|
|
|
methods: {
|
|
|
+ indexMethod(index) {
|
|
|
+ return (this.pageIndex - 1) * this.pageSize + (index + 1);
|
|
|
+ },
|
|
|
changePage(pageIndex) {
|
|
|
var self = this;
|
|
|
|