diff --git a/src/views/pqs/voltageSags/overview/right.vue b/src/views/pqs/voltageSags/overview/right.vue
index 0fcb76f8..b59b901a 100644
--- a/src/views/pqs/voltageSags/overview/right.vue
+++ b/src/views/pqs/voltageSags/overview/right.vue
@@ -6,7 +6,7 @@
-
+
@@ -22,7 +22,7 @@
-
+
diff --git a/src/views/pqs/voltageSags/report/eventReports/index.vue b/src/views/pqs/voltageSags/report/eventReports/index.vue
index 0ddceb17..ec4ca9c8 100644
--- a/src/views/pqs/voltageSags/report/eventReports/index.vue
+++ b/src/views/pqs/voltageSags/report/eventReports/index.vue
@@ -55,9 +55,9 @@ const tableStore = new TableStore({
column: [
{
title: '序号',
- type: 'seq',
+
align: 'center',
- width: 60,
+ width: 80,
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
diff --git a/src/views/pqs/voltageSags/report/weekly/index.vue b/src/views/pqs/voltageSags/report/weekly/index.vue
index 520eb5e8..a19230a7 100644
--- a/src/views/pqs/voltageSags/report/weekly/index.vue
+++ b/src/views/pqs/voltageSags/report/weekly/index.vue
@@ -47,7 +47,7 @@ const list = ref([
{
field: 'index',
title: '序号',
- width: '60',
+ width: '80',
formatter: (row: any) => {
return (
(tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize +
@@ -82,7 +82,7 @@ const list = ref([
{
field: 'index',
title: '序号',
- width: '60',
+ width: '80',
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
@@ -117,7 +117,7 @@ const list = ref([
{
field: 'index',
title: '序号',
- width: '60',
+ width: '80',
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
@@ -142,7 +142,7 @@ const list = ref([
{
field: 'index',
title: '序号',
- width: '60',
+ width: '80',
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
@@ -169,7 +169,7 @@ const list = ref([
{
field: 'index',
title: '序号',
- width: '60',
+ width: '80',
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
diff --git a/src/views/pqs/voltageSags/sagGovern/businessUser/IncomingTable.vue b/src/views/pqs/voltageSags/sagGovern/businessUser/IncomingTable.vue
index 221171b3..6657ee93 100644
--- a/src/views/pqs/voltageSags/sagGovern/businessUser/IncomingTable.vue
+++ b/src/views/pqs/voltageSags/sagGovern/businessUser/IncomingTable.vue
@@ -34,7 +34,9 @@ const tableStore = new TableStore({
publicHeight: 350,
showPage: false,
column: [
- { title: '序号', type: 'seq' },
+ { title: '序号', width: 80,formatter: (row: any) => {
+ return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
+ } },
{ title: '进线名称', field: 'name' },
{ title: '监测点名称', field: 'lineName' },
{
diff --git a/src/views/pqs/voltageSags/sagGovern/businessUser/event/eventView.vue b/src/views/pqs/voltageSags/sagGovern/businessUser/event/eventView.vue
index 1d0a8085..c04b26b1 100644
--- a/src/views/pqs/voltageSags/sagGovern/businessUser/event/eventView.vue
+++ b/src/views/pqs/voltageSags/sagGovern/businessUser/event/eventView.vue
@@ -78,7 +78,9 @@ const tableStore = new TableStore({
method: 'POST',
publicHeight: 40,
column: [
- { title: '序号', type: 'seq', width: '80' },
+ { title: '序号', width: 80,formatter: (row: any) => {
+ return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
+ } },
{ title: '进线', field: 'incomingLineName', minWidth: '130' },
{ title: '发生时间', field: 'startTime', minWidth: '220', sortable: true },
{ title: '暂降幅值(p.u.)', field: 'featureAmplitude', minWidth: '130', sortable: true },
diff --git a/src/views/pqs/voltageSags/sagGovern/businessUser/index.vue b/src/views/pqs/voltageSags/sagGovern/businessUser/index.vue
index 861773ca..4359d016 100644
--- a/src/views/pqs/voltageSags/sagGovern/businessUser/index.vue
+++ b/src/views/pqs/voltageSags/sagGovern/businessUser/index.vue
@@ -59,7 +59,9 @@ const tableStore = new TableStore({
url: '/advance-boot/sgUser/list',
method: 'POST',
column: [
- { title: '序号', type: 'seq', width: 80 },
+ { title: '序号', width: 80,formatter: (row: any) => {
+ return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
+ } },
{ title: '用户名', field: 'userName' },
{ title: '所属行业', field: 'industry' },
{ title: '所属地区', field: 'addr' },
diff --git a/src/views/pqs/voltageSags/sagGovern/businessUser/machine/index.vue b/src/views/pqs/voltageSags/sagGovern/businessUser/machine/index.vue
index cfc64bfd..f62b86db 100644
--- a/src/views/pqs/voltageSags/sagGovern/businessUser/machine/index.vue
+++ b/src/views/pqs/voltageSags/sagGovern/businessUser/machine/index.vue
@@ -59,7 +59,9 @@ const tableStore = new TableStore({
url: '/advance-boot/sgMachine/list',
method: 'POST',
column: [
- { title: '序号', type: 'seq', width: 80 },
+ { title: '序号', width: 80,formatter: (row: any) => {
+ return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
+ } },
{ title: '终端名称', minWidth: '160', field: 'name' },
{ title: '终端型号', minWidth: '140', field: 'type' },
{ title: '终端损失(万元)', width: '140', field: 'machineLoss' },
diff --git a/src/views/pqs/voltageSags/sagGovern/businessUser/productLine/index.vue b/src/views/pqs/voltageSags/sagGovern/businessUser/productLine/index.vue
index ee5bf117..5b26de89 100644
--- a/src/views/pqs/voltageSags/sagGovern/businessUser/productLine/index.vue
+++ b/src/views/pqs/voltageSags/sagGovern/businessUser/productLine/index.vue
@@ -41,7 +41,9 @@ const tableStore = new TableStore({
url: '/advance-boot/sgProductLine/list',
method: 'POST',
column: [
- { title: '序号', type: 'seq', width: 80 },
+ { title: '序号', width: 80,formatter: (row: any) => {
+ return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
+ } },
{ title: '用户名', minWidth: '130', field: 'userName' },
{ title: '进线名称', minWidth: '130', field: 'incomingLineName' },
{ title: '产线名称', minWidth: '130', field: 'name' },
diff --git a/src/views/pqs/voltageSags/sagGovern/scheme/index.vue b/src/views/pqs/voltageSags/sagGovern/scheme/index.vue
index b8a685a4..39eefd05 100644
--- a/src/views/pqs/voltageSags/sagGovern/scheme/index.vue
+++ b/src/views/pqs/voltageSags/sagGovern/scheme/index.vue
@@ -60,7 +60,9 @@ const tableStore = new TableStore({
url: '/advance-boot/sagGovernScheme/list',
method: 'POST',
column: [
- { title: '序号', type: 'seq', width: 80 },
+ { title: '序号', width: 80,formatter: (row: any) => {
+ return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
+ } },
{ title: '用户', field: 'userName', minWidth: 160 },
{ title: '生产线名称', field: 'productLineName', minWidth: 160 },
{ title: '期望回报(年)', field: 'payBackPeriod', minWidth: 150 },
diff --git a/src/views/setting/dictionary/list/index.vue b/src/views/setting/dictionary/list/index.vue
index 2c22a4ed..a615ef77 100644
--- a/src/views/setting/dictionary/list/index.vue
+++ b/src/views/setting/dictionary/list/index.vue
@@ -42,7 +42,9 @@ const tableStore = new TableStore({
method: 'POST',
column: [
- { title: '序号', type: 'seq', width: '60' },
+ { title: '序号', width: 80,formatter: (row: any) => {
+ return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
+ } },
{ title: '名称', field: 'name' },
{ title: '编码', field: 'code' },
{ title: '开启等级', field: 'openLevelName' },
diff --git a/src/views/system/bpm/category/index.vue b/src/views/system/bpm/category/index.vue
index 381fd845..eb47a257 100644
--- a/src/views/system/bpm/category/index.vue
+++ b/src/views/system/bpm/category/index.vue
@@ -44,7 +44,9 @@ const tableStore = new TableStore({
url: '/bpm-boot/bpm/category/list',
method: 'POST',
column: [
- { title: '序号', type: 'seq', width: 80 },
+ { title: '序号', width: 80,formatter: (row: any) => {
+ return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
+ } },
{ title: '分类名称', field: 'name', minWidth: 130 },
{ title: '分类标识', field: 'code', minWidth: 130 },
{ title: '分类描述', field: 'description', minWidth: 170 },
diff --git a/src/views/system/bpm/form/index.vue b/src/views/system/bpm/form/index.vue
index 7c7a4f8b..fe16a1b6 100644
--- a/src/views/system/bpm/form/index.vue
+++ b/src/views/system/bpm/form/index.vue
@@ -57,7 +57,9 @@ const tableStore = new TableStore({
url: '/bpm-boot/bpm/form/list',
method: 'POST',
column: [
- { title: '序号', type: 'seq', width: 80 },
+ { title: '序号', width: 80,formatter: (row: any) => {
+ return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
+ } },
{ title: '表单名称', minWidth: '160', field: 'name' },
{ title: '备注', minWidth: '140', field: 'remark' },
{ title: '状态', minWidth: '140', field: 'status',
diff --git a/src/views/system/bpm/model/index.vue b/src/views/system/bpm/model/index.vue
index 3ca30cfa..d71ed3dc 100644
--- a/src/views/system/bpm/model/index.vue
+++ b/src/views/system/bpm/model/index.vue
@@ -53,7 +53,9 @@ const tableStore = new TableStore({
url: '/bpm-boot/bpm/model/list',
method: 'POST',
column: [
- { title: '序号', type: 'seq', width: 80 },
+ { title: '序号', width: 80,formatter: (row: any) => {
+ return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
+ } },
{ title: '模型标识', field: 'key', width: 160 },
{ title: '模型名称', field: 'name', width: 160 },
{ title: '流程分类', field: 'categoryName', width: 150 },
diff --git a/src/views/system/bpm/sign/index.vue b/src/views/system/bpm/sign/index.vue
index c63994bf..e6e16d75 100644
--- a/src/views/system/bpm/sign/index.vue
+++ b/src/views/system/bpm/sign/index.vue
@@ -43,7 +43,9 @@ const tableStore = new TableStore({
url: '/bpm-boot/bpmSign/list',
method: 'POST',
column: [
- { title: '序号', type: 'seq', width: 80 },
+ { title: '序号', width: 80,formatter: (row: any) => {
+ return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
+ } },
{ title: '标识名称', field: 'name', minWidth: 130 },
{ title: '标识key', field: 'signKey', minWidth: 130 },
{ title: '表单查看地址', field: 'viewPath', minWidth: 200 },
diff --git a/src/views/system/bpm/task/alarmTask/index.vue b/src/views/system/bpm/task/alarmTask/index.vue
index 5cb2eb3a..33b3e0f1 100644
--- a/src/views/system/bpm/task/alarmTask/index.vue
+++ b/src/views/system/bpm/task/alarmTask/index.vue
@@ -35,9 +35,9 @@ const tableStore = new TableStore({
column: [
{
title: '序号',
- type: 'seq',
+
align: 'center',
- width: 60,
+ width: 80,
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
diff --git a/src/views/system/bpm/task/done/index.vue b/src/views/system/bpm/task/done/index.vue
index daed09ae..cb0276ec 100644
--- a/src/views/system/bpm/task/done/index.vue
+++ b/src/views/system/bpm/task/done/index.vue
@@ -38,7 +38,7 @@ const tableStore = new TableStore({
{
field: 'index',
title: '序号',
- width: '60',
+ width: '80',
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
diff --git a/src/views/system/bpm/task/myInstance/index.vue b/src/views/system/bpm/task/myInstance/index.vue
index 85953154..cf8bbfe6 100644
--- a/src/views/system/bpm/task/myInstance/index.vue
+++ b/src/views/system/bpm/task/myInstance/index.vue
@@ -43,7 +43,7 @@ const tableStore = new TableStore({
{
field: 'index',
title: '序号',
- width: '60',
+ width: '80',
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
diff --git a/src/views/system/bpm/task/todo/index.vue b/src/views/system/bpm/task/todo/index.vue
index 5c700754..225a6e58 100644
--- a/src/views/system/bpm/task/todo/index.vue
+++ b/src/views/system/bpm/task/todo/index.vue
@@ -44,7 +44,7 @@ const tableStore = new TableStore({
{
field: 'index',
title: '序号',
- width: '60',
+ width: '80',
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
diff --git a/src/views/system/subject/index.vue b/src/views/system/subject/index.vue
index efc12804..3280e9ff 100644
--- a/src/views/system/subject/index.vue
+++ b/src/views/system/subject/index.vue
@@ -34,7 +34,7 @@ const tableStore: any = new TableStore({
{
field: 'index',
title: '序号',
- width: '60',
+ width: '80',
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}