From 431506e6b44e636f1e1df9ad6cde133b26b9800d Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Tue, 02 Jul 2024 14:48:37 +0800
Subject: [PATCH] 替换logo,时间格式改变

---
 src/views/wallet/components/account.vue |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/views/wallet/components/account.vue b/src/views/wallet/components/account.vue
index 1af1cda..79d1bf7 100644
--- a/src/views/wallet/components/account.vue
+++ b/src/views/wallet/components/account.vue
@@ -65,7 +65,7 @@
         :empty-text="$t('message.home.noData')"
       >
         <el-table-column
-          prop="create_time_ts"
+          prop="create_time"
           :label="$t('message.home.kaicangshijian')"
           :formatter="getFormatTime"
         >
@@ -322,7 +322,8 @@
     handleSymbolImg,
     mergeSort,
     getFormatTime(row, column, cellValue, index) {
-      return dayjs.unix(cellValue).format("YYYY-MM-DD HH:mm:ss");
+      return cellValue
+      // return dayjs.unix(cellValue).format("YYYY-MM-DD HH:mm:ss");
     },
     gotoPage(path) {
       this.$router.push(path);

--
Gitblit v1.9.3