修改序号bug

This commit is contained in:
zhoulingpo
2023-12-05 16:04:26 +08:00
parent 8d60b79bc5
commit 39544016ca
4 changed files with 9 additions and 13 deletions
@@ -109,15 +109,6 @@
<!-- min-width="130"-->
<!-- >-->
<!-- </el-table-column>-->
<el-table-column
type="index"
width="55"
label="序号"
align="center">
<template slot-scope="{scope, column, $index}">
{{ ($index + 1) + (replacePage - 1) * replaceLawsNumForm.pageSize }}
</template>
</el-table-column>
<el-table-column
label="政策编号"
min-width="130">
@@ -123,6 +123,7 @@
</div>
<pagination
style="position: relative;"
:auto-size="true"
:page="configPage"
:pageSize="configRows"
:total="configTotal"
@@ -168,7 +169,7 @@ export default {
configStandFlag: false, // 控制配置标准表格是否显示
configPage: 1,
configTotal: 0,
configRows: this.$store.getters.userInfo.configContent,
configRows: 20,
searching: false,
configStandList: [],
configLoading: false, // 配置表格加载中
@@ -1628,6 +1628,8 @@
<!--分页-->
<pagination
style="position: relative;"
:auto-size="true"
:page-size="replaceLawsNumForm.pageSize"
:page="replacePage"
:total="replaceTotal"
@pageChange="pageChangeReplace"
@@ -1873,7 +1875,7 @@ export default {
issueTimeStart:'',
issueTimeEnd:'',
page: 1,
pageSize: this.$store.getters.userInfo.configContent,
pageSize: 20,
total: 0,
validFlag: '0',
menuId: "", // 标准类别
@@ -1597,6 +1597,8 @@
<loading :loading="loading">加载中...</loading>
<pagination
style="position: static;"
:auto-size="true"
:page-size="configRows"
:page="configPage"
:total="configTotal"
@pageChange="configuraPageChange"
@@ -2076,7 +2078,7 @@ export default {
itemsRows: this.$store.getters.userInfo.configContent,
configPage: 1,
configTotal: 0,
configRows: this.$store.getters.userInfo.configContent,
configRows: 20,
zNodesS: [], // 责任部门树结构
zNodesSItem: [],
searchInlandNodes: [], // 条目部门选择树形结构
@@ -4280,7 +4282,7 @@ export default {
selectConfiguraStand() {
this.sarConfigStandSearch.page = this.configPage
// this.sarConfigStandSearch.pageSize = this.configRows
this.sarConfigStandSearch.pageSize = this.$store.getters.userInfo.configContent
this.sarConfigStandSearch.pageSize = this.configRows
this.$http.get('sarStandardsInfo/sar-standards-info/getSarStandardsInfoPage', this.sarConfigStandSearch, {
_this: this,
loading: 'loading'