增加序号

This commit is contained in:
zhoulingpo
2023-11-24 10:58:52 +08:00
parent 5151b68514
commit 0afd5ef087
9 changed files with 140 additions and 6 deletions
@@ -159,6 +159,16 @@
align="center"
>
</el-table-column>
<el-table-column
label="序号"
fixed
align="center"
type="index"
width="50">
<template slot-scope="{scope, column, $index}">
{{ ($index + 1) + (drawerPage - 1) * sarAccessInfo.pageSize }}
</template>
</el-table-column>
<el-table-column
show-overflow-tooltip
fixed="left"
@@ -114,7 +114,7 @@
type="index"
>
<template slot-scope="{scope, column, $index}">
{{ ($index + 1) + (page - 1) * pageSize }}
{{ ($index + 1) + (standardForm.page - 1) * standardForm.Size }}
</template>
</el-table-column>
<el-table-column
@@ -139,6 +139,16 @@
align="center"
>
</el-table-column>
<el-table-column
label="序号"
fixed
align="center"
type="index"
width="50">
<template slot-scope="{scope, column, $index}">
{{ ($index + 1) + (sarAccessInfo.page - 1) * sarAccessInfo.pageSize }}
</template>
</el-table-column>
<el-table-column
prop="standNumber"
show-overflow-tooltip
@@ -709,6 +719,7 @@ export default {
askType: '', // 监管类型
dataSource: 'INLAND_STAND', // 数据来源
page: 1,
pageSize: this.$store.getters.userInfo.configContent,
validFlag: 0,
advanceSearchVOStr: []
@@ -1660,8 +1671,8 @@ export default {
},
// 数据搜索table分页条数改变回调
drawerPageSizeChange () {
this.sarAccessInfo.Size = this.$store.getters.userInfo.configContent
drawerPageSizeChange (size) {
this.sarAccessInfo.pageSize = size
this.selectLawsStands()
},
// 点击 导出、全部导出按钮事件
@@ -156,6 +156,16 @@
align="center"
>
</el-table-column>
<el-table-column
label="序号"
fixed
align="center"
type="index"
width="50">
<template slot-scope="{scope, column, $index}">
{{ ($index + 1) + (drawerPage - 1) * sarAccessInfo.pageSize }}
</template>
</el-table-column>
<el-table-column
prop="standNumber"
show-overflow-tooltip