2023-12-29
This commit is contained in:
@@ -58,7 +58,7 @@
|
|||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<pagination :total="page.total" :page.sync="page.current" :limit.sync="page.size"
|
<pagination :total="page.total" :page.sync="page.current" :limit.sync="page.size"
|
||||||
@pagination="pagination" style="padding-bottom: 100px;" />
|
@pagination="getPageList" style="padding-bottom: 100px;" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="container" v-show="viewState == 2">
|
<div class="container" v-show="viewState == 2">
|
||||||
@@ -123,7 +123,7 @@
|
|||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<pagination :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size"
|
<pagination :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size"
|
||||||
@pagination="pagination2" style="padding-bottom: 100px;" />
|
@pagination="getPageList2" style="padding-bottom: 100px;" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
|
|||||||
@@ -58,7 +58,7 @@
|
|||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<pagination :total="page.total" :page.sync="page.current" :limit.sync="page.size"
|
<pagination :total="page.total" :page.sync="page.current" :limit.sync="page.size"
|
||||||
@pagination="pagination" style="padding-bottom: 100px;" />
|
@pagination="getPageList" style="padding-bottom: 100px;" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="container" v-show="viewState == 2">
|
<div class="container" v-show="viewState == 2">
|
||||||
@@ -123,7 +123,7 @@
|
|||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<pagination :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size"
|
<pagination :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size"
|
||||||
@pagination="pagination2" style="padding-bottom: 100px;" />
|
@pagination="getPageList2" style="padding-bottom: 100px;" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
@@ -367,12 +367,14 @@
|
|||||||
indexMethod(index) {
|
indexMethod(index) {
|
||||||
var pagestart = (this.page.current - 1) * this.page.size
|
var pagestart = (this.page.current - 1) * this.page.size
|
||||||
var pageindex = index + 1 + pagestart
|
var pageindex = index + 1 + pagestart
|
||||||
|
console.log("pageindex",pageindex);
|
||||||
return pageindex
|
return pageindex
|
||||||
},
|
},
|
||||||
// 序号
|
// 序号
|
||||||
indexMethod2(index) {
|
indexMethod2(index) {
|
||||||
var pagestart = (this.listQuery.current - 1) * this.listQuery.size
|
var pagestart = (this.listQuery.current - 1) * this.listQuery.size
|
||||||
var pageindex = index + 1 + pagestart
|
var pageindex = index + 1 + pagestart
|
||||||
|
console.log("pageindex2",pageindex);
|
||||||
return pageindex
|
return pageindex
|
||||||
},
|
},
|
||||||
//下载模版
|
//下载模版
|
||||||
|
|||||||
Reference in New Issue
Block a user