From b7eb749eb71ae802f9868e3b099aa362e23d7cc0 Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Sat, 06 Sep 2025 18:33:05 +0800
Subject: [PATCH] 1

---
 src/views/cryptos/loan/index.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/views/cryptos/loan/index.vue b/src/views/cryptos/loan/index.vue
index 89e5628..7a4c9d7 100644
--- a/src/views/cryptos/loan/index.vue
+++ b/src/views/cryptos/loan/index.vue
@@ -147,7 +147,7 @@
 
 <script>
 import AssetsHead from "@/components/Transform/assets-head/index.vue";
-import { Popup, Uploader } from "vant";
+import { Popup, Uploader, showToast } from "vant";
 import { _uploadImage, _getLoan, _loanApply } from "@/service/fund.api";
 // import {debounce} from "@/utils/utis";
 
@@ -171,7 +171,7 @@
     submit() {
       // console.log('this.frontFile',this.frontFile)
       if (!this.frontFile.length || !this.reverseFile.length || !this.fileList.length) {
-        this.$toast(this.$t('请上传完整证件信息'))
+        showToast(this.$t('请上传完整证件信息'))
         return
       }
       _loanApply({
@@ -191,7 +191,7 @@
         // console.log('res',res)
         this.$router.push('/cryptos/loanHistory')
       }).catch(err => {
-        this.$toast(this.$t(err.msg))
+        showToast(this.$t(err.msg))
       })
     },
     // //防抖

--
Gitblit v1.9.3