From ef52095f5e9f0a9fe2da779bb1573947d77d75b6 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Fri, 22 May 2026 10:53:01 +0800
Subject: [PATCH] 1
---
src/views/cryptos/AccountChange/index.vue | 38 +++++++++++++++++++++++++++-----------
1 files changed, 27 insertions(+), 11 deletions(-)
diff --git a/src/views/cryptos/AccountChange/index.vue b/src/views/cryptos/AccountChange/index.vue
index a4a6885..8c9f300 100644
--- a/src/views/cryptos/AccountChange/index.vue
+++ b/src/views/cryptos/AccountChange/index.vue
@@ -12,14 +12,18 @@
<!-- <img v-if="item.amount > 0" src="@/assets/image/assets-center/in.png" class="w-44 h-44 mr-20" />
<img v-else src="@/assets/image/assets-center/out.png" class="w-44 h-44 mr-20" /> -->
<div>
- <div class="font-32 textColor">{{ category[item.category] }}</div>
- <div class="text-grey font-26 mt-6">{{ item.createTime }}</div>
- <div class="text-grey font-26 mt-6">{{ orderTypes[item.content_type] }}</div>
+ <!-- <div class="font-32 textColor">{{ category[item.category] }}</div> -->
+ <div class="font-32 textColor">{{ orderTypes[item.content_type] }}</div>
+ <div class="text-grey font-26 mt-6">
+ {{ item.createTime }}
+ (UTC+8)
+ </div>
+ <!-- <div class="text-grey font-26 mt-6">{{ orderTypes[item.content_type] }}</div> -->
</div>
</div>
<div>
- <div class="font-32 text-right" :class="item.amount > 0 ? 'text-green' : 'text-red'">{{
- item.amount }} {{ item.wallet_type.toUpperCase() }}</div>
+ <div class="font-32 text-right" :class="item.amount > 0 ? 'text-green' : 'text-red'">
+ {{ item.amount }} {{ (item.wallet_type || '').toUpperCase() }}</div>
<!-- <div class="text-grey font-28 mt-14">{{ item.createTimeStr }}</div> -->
<div class="text-grey font-28 mt-6 text-right">{{ item.amountAfter }}</div>
</div>
@@ -54,8 +58,8 @@
title: this.$t('选择账户类型'),
selectData: [
{ title: this.$t('全部'), type: '' },
- { title: this.$t('法币交易'), type: 'coin' },
- { title: this.$t('合约交易'), type: 'contract' },
+ { title: this.$t('充值记录'), type: 'coin' },
+ // { title: this.$t('合约交易'), type: 'contract' },
{ title: this.$t('币币交易'), type: 'exchange' },
],
type: "",//选中类型
@@ -144,6 +148,8 @@
this.symbolType = this.$route.query.type
}
_fundRecord(this.type, this.page, this.symbolType).then(data => {
+ console.log("data", data);
+
this.list = [...this.list, ...data]
// console.log(logs)
this.loading = false
@@ -176,8 +182,14 @@
</script>
<style lang="scss" scoped>
@import "@/assets/init.scss";
-
+:deep(.app-content-wrap){
+ background-color: #F6F5FA !important;
+}
+.app-root{
+ background-color: #fff !important;
+}
#cryptos {
+ // background-color: #fff;
:deep(.van-tabs__wrap) {
// height: 88px !important;
border-bottom: 1px solid $icon-bg;
@@ -194,13 +206,17 @@
.accountChange {
width: 100%;
box-sizing: border-box;
-
+ background-color: #F6F5FA !important;
:deep(.van-tab--active .van-tab__text) {
- color: $text_color;
+ @include themify() {
+ color: themed("text_color");
+ }
}
:deep(.van-tab__text) {
- color: $text_color1;
+ @include themify() {
+ color: themed("text_color1");
+ }
}
}
--
Gitblit v1.9.3