From b8f6f514b675fa6a006dfafbc99303b3c5c8ba85 Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Fri, 17 May 2024 10:52:12 +0800
Subject: [PATCH] 一鍵平倉增加英文多语言,IFSC改成Select recharge account

---
 src/main.js |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/src/main.js b/src/main.js
index 191f9eb..ed93627 100644
--- a/src/main.js
+++ b/src/main.js
@@ -19,7 +19,7 @@
   Tab,
   Tabs,
   Popup,
-  DatetimePicker
+  DatetimePicker,
 } from "vant";
 import "vant/lib/index.css";
 import moment from "moment";
@@ -33,6 +33,7 @@
 import "lib-flexible";
 // import md5 from 'js-md5'
 import * as filters from "@/utils/utils";
+import * as allocation from "@/utils/allocation";
 import animated from "animate.css"; // npm install animate.css --save安装,在引入
 
 import "../static/css/public2.css";
@@ -70,6 +71,10 @@
 Object.keys(filters).forEach(key => {
   Vue.filter(key, filters[key]);
 });
+Object.keys(allocation).forEach(key => {
+  console.log(allocation, "====");
+  Vue.prototype[key] = allocation[key];
+});
 Vue.prototype.$state = state;
 Vue.prototype.$setgoindex = function() {
   if (window.history.length <= 1) {

--
Gitblit v1.9.3