mirror of
https://github.com/didi/KnowStreaming.git
synced 2026-01-03 11:28:12 +08:00
fix: 数字展示格式化
This commit is contained in:
@@ -89,12 +89,9 @@ export const getJobsListColumns = (arg?: any) => {
|
|||||||
title: '任务执行对象',
|
title: '任务执行对象',
|
||||||
dataIndex: 'target',
|
dataIndex: 'target',
|
||||||
key: 'target',
|
key: 'target',
|
||||||
|
width: 232,
|
||||||
render(t: any, r: any) {
|
render(t: any, r: any) {
|
||||||
return (
|
return <TagsWithHide placement="bottom" list={t.split(',')} expandTagContent={(num: any) => `共有${num}个`} />;
|
||||||
<div style={{ width: '232px' }}>
|
|
||||||
<TagsWithHide placement="bottom" list={t.split(',')} expandTagContent={(num: any) => `共有${num}个`} />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import React, { useState, useEffect, useRef } from 'react';
|
import React, { useState, useEffect, useRef } from 'react';
|
||||||
import { Select, Form, Utils, AppContainer, Input, Button, ProTable, Badge, Tag, SearchInput, IconFont, Divider } from 'knowdesign';
|
import { Select, Form, Utils, AppContainer, Input, Button, ProTable, Badge, Tag, SearchInput, Divider } from 'knowdesign';
|
||||||
|
import { IconFont } from '@knowdesign/icons';
|
||||||
import BalanceDrawer from './BalanceDrawer';
|
import BalanceDrawer from './BalanceDrawer';
|
||||||
import HistoryDrawer from './HistoryDrawer';
|
import HistoryDrawer from './HistoryDrawer';
|
||||||
import DBreadcrumb from 'knowdesign/es/extend/d-breadcrumb';
|
import DBreadcrumb from 'knowdesign/es/extend/d-breadcrumb';
|
||||||
@@ -133,7 +134,7 @@ const LoadBalance: React.FC = (props: any) => {
|
|||||||
key: 'disk_spec',
|
key: 'disk_spec',
|
||||||
width: '150px',
|
width: '150px',
|
||||||
render: (text: any, row: any) => {
|
render: (text: any, row: any) => {
|
||||||
return text !== null ? `${text}GB` : '-';
|
return text !== null ? `${text.toLocaleString()}GB` : '-';
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -145,7 +146,10 @@ const LoadBalance: React.FC = (props: any) => {
|
|||||||
return text !== null ? (
|
return text !== null ? (
|
||||||
<span>
|
<span>
|
||||||
<Badge status={row?.disk_status === 0 ? 'success' : 'error'} />
|
<Badge status={row?.disk_status === 0 ? 'success' : 'error'} />
|
||||||
{`${getSizeAndUnit(text, 'B').valueWithUnit} (${((row.disk_avg * 100) / Utils.transGBToB(row.disk_spec)).toFixed(2)}%)`}
|
{`${getSizeAndUnit(text, 'B').valueWithUnit.toLocaleString()} (${(
|
||||||
|
(row.disk_avg * 100) /
|
||||||
|
Utils.transGBToB(row.disk_spec)
|
||||||
|
).toFixed(2)}%)`}
|
||||||
</span>
|
</span>
|
||||||
) : (
|
) : (
|
||||||
'-'
|
'-'
|
||||||
@@ -158,7 +162,7 @@ const LoadBalance: React.FC = (props: any) => {
|
|||||||
key: 'bytesIn_spec',
|
key: 'bytesIn_spec',
|
||||||
width: '150px',
|
width: '150px',
|
||||||
render: (text: any, row: any) => {
|
render: (text: any, row: any) => {
|
||||||
return text !== null ? `${text}MB/s` : '-';
|
return text !== null ? `${text.toLocaleString()}MB/s` : '-';
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -170,7 +174,10 @@ const LoadBalance: React.FC = (props: any) => {
|
|||||||
return text !== null ? (
|
return text !== null ? (
|
||||||
<span>
|
<span>
|
||||||
<Badge status={row?.bytesIn_status === 0 ? 'success' : 'error'} />
|
<Badge status={row?.bytesIn_status === 0 ? 'success' : 'error'} />
|
||||||
{`${getSizeAndUnit(text, 'B/s').valueWithUnit} (${((row.bytesIn_avg * 100) / (row.bytesIn_spec * 1024 * 1024)).toFixed(2)}%)`}
|
{`${getSizeAndUnit(text, 'B/s').valueWithUnit.toLocaleString()} (${(
|
||||||
|
(row.bytesIn_avg * 100) /
|
||||||
|
(row.bytesIn_spec * 1024 * 1024)
|
||||||
|
).toFixed(2)}%)`}
|
||||||
</span>
|
</span>
|
||||||
) : (
|
) : (
|
||||||
'-'
|
'-'
|
||||||
@@ -183,7 +190,7 @@ const LoadBalance: React.FC = (props: any) => {
|
|||||||
key: 'bytesOut_spec',
|
key: 'bytesOut_spec',
|
||||||
width: '150px',
|
width: '150px',
|
||||||
render: (text: any, row: any) => {
|
render: (text: any, row: any) => {
|
||||||
return text !== null ? `${text}MB/s` : '-';
|
return text !== null ? `${text.toLocaleString()}MB/s` : '-';
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -196,7 +203,10 @@ const LoadBalance: React.FC = (props: any) => {
|
|||||||
return text !== null ? (
|
return text !== null ? (
|
||||||
<span>
|
<span>
|
||||||
<Badge status={row?.bytesOut_status === 0 ? 'success' : 'error'} />
|
<Badge status={row?.bytesOut_status === 0 ? 'success' : 'error'} />
|
||||||
{`${getSizeAndUnit(text, 'B/s').valueWithUnit} (${((row.bytesOut_avg * 100) / (row.bytesOut_spec * 1024 * 1024)).toFixed(2)}%)`}
|
{`${getSizeAndUnit(text, 'B/s').valueWithUnit.toLocaleString()} (${(
|
||||||
|
(row.bytesOut_avg * 100) /
|
||||||
|
(row.bytesOut_spec * 1024 * 1024)
|
||||||
|
).toFixed(2)}%)`}
|
||||||
</span>
|
</span>
|
||||||
) : (
|
) : (
|
||||||
'-'
|
'-'
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
/* eslint-disable react/display-name */
|
/* eslint-disable react/display-name */
|
||||||
import React, { useState, useEffect } from 'react';
|
import React, { useState, useEffect } from 'react';
|
||||||
import { useHistory, useParams } from 'react-router-dom';
|
import { useHistory, useParams } from 'react-router-dom';
|
||||||
import { AppContainer, IconFont, Input, ProTable, Select, Switch, Tooltip, Utils, Dropdown, Menu, Button, Divider } from 'knowdesign';
|
import { AppContainer, Input, ProTable, Select, Switch, Tooltip, Utils, Dropdown, Menu, Button, Divider } from 'knowdesign';
|
||||||
|
import { IconFont } from '@knowdesign/icons';
|
||||||
import Create from './Create';
|
import Create from './Create';
|
||||||
import './index.less';
|
import './index.less';
|
||||||
import Api from '@src/api/index';
|
import Api from '@src/api/index';
|
||||||
@@ -90,11 +91,11 @@ const AutoPage = (props: any) => {
|
|||||||
const orgVal = record?.latestMetrics?.metrics?.[metricName];
|
const orgVal = record?.latestMetrics?.metrics?.[metricName];
|
||||||
if (orgVal !== undefined) {
|
if (orgVal !== undefined) {
|
||||||
if (metricName === 'HealthScore') {
|
if (metricName === 'HealthScore') {
|
||||||
return Math.round(orgVal);
|
return Math.round(orgVal).toLocaleString();
|
||||||
} else if (metricName === 'LogSize') {
|
} else if (metricName === 'LogSize') {
|
||||||
return Number(Utils.formatAssignSize(orgVal, 'MB'));
|
return Number(Utils.formatAssignSize(orgVal, 'MB')).toLocaleString();
|
||||||
} else {
|
} else {
|
||||||
return Number(Utils.formatAssignSize(orgVal, 'KB'));
|
return Number(Utils.formatAssignSize(orgVal, 'KB')).toLocaleString();
|
||||||
// return Utils.formatAssignSize(orgVal, 'KB');
|
// return Utils.formatAssignSize(orgVal, 'KB');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user