diff --git a/src/views/SellerRecordsView.vue b/src/views/SellerRecordsView.vue
index 1916348..bcb3e1b 100644
--- a/src/views/SellerRecordsView.vue
+++ b/src/views/SellerRecordsView.vue
@@ -17,16 +17,11 @@
{{ record.userName }}
ID: {{ record.account }}
-
{{ record.time }}
-
{{ record.amount }} coins
-
{{
- getTransactionType(record.type, record.origin)
- }}
+
{{ record.amount }} coins
+
{{ record.time }}
@@ -44,7 +39,7 @@
import { ref, onMounted } from 'vue'
import MobileHeader from '../components/MobileHeader.vue'
import { getFreightWaterFlow } from '../api/wallet.js'
-import { formatUTCTime } from '@/utils/utcFormat.js'
+import { formatUTCCustom } from '@/utils/utcFormat.js'
import { getUserId } from '@/utils/userStore.js'
const loading = ref(false)
@@ -90,7 +85,7 @@ const fetchRecords = async () => {
userId: item.acceptUserId,
userName: `User${item.acceptUserId.toString().slice(-6)}...`, // 显示最后6位
amount: getAmountDisplay(item.type, item.quantity),
- time: formatUTCTime(item.createTime),
+ time: formatUTCCustom(item.createTime),
type: item.type,
quantity: item.quantity,
balance: item.balance,
@@ -115,6 +110,11 @@ onMounted(async () => {