From 11f0c2ee50e7f561ced3ec69cb7e0f524c419b8b Mon Sep 17 00:00:00 2001 From: stt Date: Mon, 13 Oct 2025 14:24:57 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A8=B3=E6=80=81=E7=94=B5=E8=83=BD=E8=B4=A8?= =?UTF-8?q?=E9=87=8F=E5=88=86=E6=9E=90=E9=A1=B5=E9=9D=A2=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/table/indexClick.vue | 234 ++++++++++++++++++ .../limitViolationStatistics.vue | 129 ++++++++++ .../teadyStatePowerQuality/pointList.vue | 106 ++++++++ types/table.d.ts | 5 +- 4 files changed, 472 insertions(+), 2 deletions(-) create mode 100644 src/components/table/indexClick.vue create mode 100644 src/views/cockpit/teadyStatePowerQuality/limitViolationStatistics.vue create mode 100644 src/views/cockpit/teadyStatePowerQuality/pointList.vue diff --git a/src/components/table/indexClick.vue b/src/components/table/indexClick.vue new file mode 100644 index 00000000..fec3b1c3 --- /dev/null +++ b/src/components/table/indexClick.vue @@ -0,0 +1,234 @@ + + + + + diff --git a/src/views/cockpit/teadyStatePowerQuality/limitViolationStatistics.vue b/src/views/cockpit/teadyStatePowerQuality/limitViolationStatistics.vue new file mode 100644 index 00000000..6cfdc71b --- /dev/null +++ b/src/views/cockpit/teadyStatePowerQuality/limitViolationStatistics.vue @@ -0,0 +1,129 @@ + + + diff --git a/src/views/cockpit/teadyStatePowerQuality/pointList.vue b/src/views/cockpit/teadyStatePowerQuality/pointList.vue new file mode 100644 index 00000000..3ef30515 --- /dev/null +++ b/src/views/cockpit/teadyStatePowerQuality/pointList.vue @@ -0,0 +1,106 @@ + + + diff --git a/types/table.d.ts b/types/table.d.ts index 2de0e007..80874eb4 100644 --- a/types/table.d.ts +++ b/types/table.d.ts @@ -82,8 +82,9 @@ declare global { column: VxeColumnProps, index: number ) => string - children?: TableColumn[], - property?:string + children?: TableColumn[] + property?: string + clickable?: boolean // 是否可点击 } /* 表格右侧操作按钮 */