样式修改

This commit is contained in:
stt
2025-12-08 10:32:11 +08:00
parent e2a5d084a5
commit c188446e76
2 changed files with 8 additions and 8 deletions

View File

@@ -132,7 +132,7 @@ const tableStore: any = new TableStore({
},
{
title: '波形',
width: '100',
minWidth: '100',
render: 'buttons',
buttons: [
{

View File

@@ -86,27 +86,27 @@ const tableStore: any = new TableStore({
{
title: '暂态时间',
field: 'startTime',
width: '180'
minWidth: '180'
},
{
title: '测点名称',
field: 'lineName',
width: '150'
minWidth: '150'
},
{
title: '暂态类型',
field: 'tag',
width: '100'
minWidth: '100'
},
{
title: '特征幅值(%)',
field: 'amplitude',
width: '100'
minWidth: '100'
},
{
title: '暂降深度(%)',
field: 'depth',
width: '100',
minWidth: '100',
formatter: (row: any) => {
// 当暂态类型不是电压暂升时,计算暂降深度 = 100 - 特征幅值
if (row.row.tag !== '电压暂升') {
@@ -124,12 +124,12 @@ const tableStore: any = new TableStore({
{
title: '持续时间(S)',
field: 'persistTime',
width: '100'
minWidth: '100'
},
{
title: '严重度',
field: 'severity',
width: '80'
minWidth: '80'
},
{
title: '波形',