增加全局方法,处理表格翻页后,index序号延续问题

This commit is contained in:
BianLzhaoMin 2024-08-09 10:54:15 +08:00
parent 619abc1808
commit 002e29081a
3 changed files with 37 additions and 18 deletions

View File

@ -109,6 +109,9 @@
align="center" align="center"
label="序号" label="序号"
type="index" type="index"
:index="
indexContinuation(queryParams.pageNum, queryParams.pageSize)
"
v-if="indexNumShow" v-if="indexNumShow"
/> />
<el-table-column <el-table-column
@ -143,6 +146,14 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<!-- 分页 -->
<pagination
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getTableList"
/>
</div> </div>
</template> </template>
@ -170,7 +181,7 @@ export default {
computed: { computed: {
/* 根据操作栏控制表头是否显示 */ /* 根据操作栏控制表头是否显示 */
tableColumCheckProps() { tableColumCheckProps() {
return this.columCheckList.filter((e) => { return this.columCheckList.filter(e => {
return e.checked != false return e.checked != false
}) })
}, },
@ -187,7 +198,18 @@ export default {
data() { data() {
return { return {
// //
queryParams: {}, queryParams: {
pageNum: 1,
pageSize: 20,
},
//
tableList: [
{ scrapNum: '测试' },
{ scrapNum: '123' },
{ scrapNum: '测试' },
],
//
total: 0,
// //
showSearch: true, showSearch: true,
// //
@ -198,25 +220,18 @@ export default {
handleShow: true, handleShow: true,
// label // label
columCheckList: [], columCheckList: [],
//
tableList: [
{ scrapNum: '测试' },
{ scrapNum: '123' },
{ scrapNum: '测试' },
],
// //
dynamicWidth: 0, dynamicWidth: 0,
} }
}, },
created() { created() {
this.columCheckList = this.columnsList this.columCheckList = this.columnsList.map(e => {
this.columCheckList = this.columCheckList.map((e) => {
this.$set(e, 'checked', true) this.$set(e, 'checked', true)
return e return e
}) })
/* 生成查询参数 */ /* 生成查询参数 */
this.formLabel.map((e) => { this.formLabel.map(e => {
this.$set(this.queryParams, e.f_model, '') this.$set(this.queryParams, e.f_model, '')
}) })
this.getTableList() this.getTableList()
@ -228,7 +243,7 @@ export default {
methods: { methods: {
/** 获取列表数据 */ /** 获取列表数据 */
async getTableList() { async getTableList() {
const res = await this.requestApi({ ...this.queryParams }) const res = await this.requestApi(this.queryParams)
console.log(res, '列表数据') console.log(res, '列表数据')
}, },
/** 查询按钮 */ /** 查询按钮 */
@ -238,6 +253,8 @@ export default {
/** 重置按钮 */ /** 重置按钮 */
resetQuery() { resetQuery() {
this.$refs.queryFormRef.resetFields() this.$refs.queryFormRef.resetFields()
this.queryParams.pageNum = 1
this.queryParams.pageSize = 10
this.getTableList() this.getTableList()
}, },
/** 动态设置操作列的列宽 */ /** 动态设置操作列的列宽 */
@ -263,10 +280,6 @@ export default {
? buttonCount ? buttonCount
: buttons.length : buttons.length
}) })
// 2*-1
// if (buttonCount > 2) {
// width += paddingSpacing * (buttonCount - 1)
// }
return width return width
} }
}, },

View File

@ -18,7 +18,7 @@ import './assets/icons' // icon
import './permission' // permission control import './permission' // permission control
import { getDicts } from "@/api/system/dict/data"; import { getDicts } from "@/api/system/dict/data";
import { getConfigKey } from "@/api/system/config"; import { getConfigKey } from "@/api/system/config";
import { parseTime, resetForm, addDateRange, selectDictLabel, selectDictLabels, handleTree } from "@/utils/bonus"; import { parseTime, resetForm, addDateRange, selectDictLabel, selectDictLabels, handleTree, indexContinuation } from "@/utils/bonus";
// 分页组件 // 分页组件
import Pagination from "@/components/Pagination"; import Pagination from "@/components/Pagination";
// 自定义表格工具组件 // 自定义表格工具组件
@ -53,6 +53,7 @@ Vue.prototype.selectDictLabel = selectDictLabel
Vue.prototype.selectDictLabels = selectDictLabels Vue.prototype.selectDictLabels = selectDictLabels
Vue.prototype.download = download Vue.prototype.download = download
Vue.prototype.handleTree = handleTree Vue.prototype.handleTree = handleTree
Vue.prototype.indexContinuation = indexContinuation
// 全局组件挂载 // 全局组件挂载
Vue.component('DictTag', DictTag) Vue.component('DictTag', DictTag)

View File

@ -88,7 +88,7 @@ export function selectDictLabel(datas, value) {
// 回显数据字典(字符串、数组) // 回显数据字典(字符串、数组)
export function selectDictLabels(datas, value, separator) { export function selectDictLabels(datas, value, separator) {
if (value === undefined || value.length ===0) { if (value === undefined || value.length === 0) {
return ""; return "";
} }
if (Array.isArray(value)) { if (Array.isArray(value)) {
@ -233,3 +233,8 @@ export function tansParams(params) {
export function blobValidate(data) { export function blobValidate(data) {
return data.type !== 'application/json' return data.type !== 'application/json'
} }
// 解决表格翻页时 index 索引延续问题
export function indexContinuation(num, size) {
return (num - 1) * size + 1
}