From d136a6fa385be6821f32f5e98d506bc851d40774 Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Tue, 16 Jul 2024 10:01:13 +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