--增加性能数据排序,修改查询黄金指标时长

This commit is contained in:
lai
2023-10-31 17:50:33 +08:00
parent 11ccc10a01
commit 27a00a08ca
2 changed files with 13 additions and 2 deletions

View File

@@ -109,6 +109,9 @@ let tableColumns: ColumnsType = [
title: '值',
dataIndex: 'value',
align: 'center',
sorter: (a: any, b: any) => {
return 1;
},
},
{
title: '开始时间',
@@ -118,6 +121,9 @@ let tableColumns: ColumnsType = [
if (!opt.value) return '';
return parseDateToStr(opt.value);
},
sorter: (a: any, b: any) => {
return 1;
},
},
{
title: '结束时间',
@@ -127,6 +133,9 @@ let tableColumns: ColumnsType = [
if (!opt.value) return '';
return parseDateToStr(opt.value);
},
sorter: (a: any, b: any) => {
return 1;
},
},
];