修改冀北现场问题

This commit is contained in:
GGJ
2025-12-17 09:22:19 +08:00
parent 264f33302f
commit 92aa66436e
25 changed files with 493 additions and 366 deletions

View File

@@ -2,13 +2,14 @@
<div>
<TableHeader datePicker area nextFlag theCurrentTime ref="TableHeaderRef">
<template #select>
<el-form-item label="信息查询">
<el-form-item label="数据筛选">
<el-input
style="width: 200px"
placeholder="请输入变电站/监测点名称"
v-model="tableStore.table.params.searchValue"
clearable
maxlength="32" show-word-limit
maxlength="32"
show-word-limit
></el-input>
</el-form-item>
</template>
@@ -34,8 +35,10 @@ const tableStore = new TableStore({
isWebPaging: true,
paramsPOST: true,
column: [
{
title: '序号', width: 80, formatter: (row: any) => {
{
title: '序号',
width: 80,
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
},