From 48299aa2c1e4f3ebdfc48a079f11ea3c97115221 Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Thu, 18 Jul 2024 17:08:06 +0800
Subject: [PATCH] 美股股票域名更改
---
src/views/userlist/index.vue | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/src/views/userlist/index.vue b/src/views/userlist/index.vue
index 3f9ab59..132fc55 100644
--- a/src/views/userlist/index.vue
+++ b/src/views/userlist/index.vue
@@ -184,7 +184,11 @@
dataIndex: 'userAmt',
align: 'center',
customRender: (text, row, index) => {
- return text.toFixed(2)
+ if(!text && text == null ){
+ return 0
+ }else{
+ return text.toFixed(2)
+ }
},
},
{
--
Gitblit v1.9.3