CN-1184 fix:DNS服务洞察页,按照吞吐量排序时排序不准确

This commit is contained in:
hyx
2023-08-02 22:21:19 +08:00
parent 5c1618b4e2
commit 2c45d2bf27

View File

@@ -28,7 +28,7 @@
:class="tableClass"
height="100%"
empty-text=" "
@sort-change="((column) => {sortChange(column,tab.prop)})"
@sort-change="((col) => {sortChange(col,tab.prop)})"
:key="index"
>
<template v-for="(item, index) in customTableTitles">
@@ -887,7 +887,7 @@ export default {
arr.sort((a, b) => {
const str1 = Array.isArray(a[column.prop]) ? a[column.prop][0] : a[column.prop]
const str2 = Array.isArray(b[column.prop]) ? b[column.prop][0] : b[column.prop]
if ((_.isNumber(str1)) || str1 === '') {
if (!_.isNaN(Number(str1)) || str1 === '') {
return str2 - str1
} else {
let aObj = a[column.prop] ? a[column.prop] : a[index]
@@ -927,7 +927,7 @@ export default {
arr.sort((a, b) => {
const str1 = Array.isArray(a[column.prop]) ? a[column.prop][0] : a[column.prop]
const str2 = Array.isArray(b[column.prop]) ? b[column.prop][0] : b[column.prop]
if ((_.isNumber(str1)) || str1 === '') {
if (!_.isNaN(Number(str1)) || str1 === '') {
return str1 - str2
} else {
let aObj = a[column.prop] ? a[column.prop] : a[index]