From e7657b7014971de552045a192c0e6643b8f8be47 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Tue, 05 Aug 2025 10:49:00 +0800
Subject: [PATCH] 1

---
 .gitignore                                  |    1 
 yarn.lock                                   |   11 +----
 src/views/cryptos/Recharge/rechargeList.vue |    4 +-
 index.html                                  |    2 
 src/config/index.js                         |   12 +++---
 src/assets/imgs/logo.png                    |    0 
 src/views/register/index.vue                |   10 ++--
 .env                                        |    2 
 src/components/fx-footer/index.vue          |   16 ++++----
 src/views/homePage/index.vue                |    6 ++
 relicon.png                                 |    0 
 11 files changed, 32 insertions(+), 32 deletions(-)

diff --git a/.env b/.env
index fdaa543..273e70a 100644
--- a/.env
+++ b/.env
@@ -1,2 +1,2 @@
-VITE_APP__TITLE = "Composite"
+VITE_APP__TITLE = "BingX"
 VUE_APP_THEME = "dark"
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 1426e85..d3d39bf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -22,3 +22,4 @@
 *.njsproj
 *.sln
 *.sw?
+dist.rar
diff --git a/index.html b/index.html
index 7a6b57a..895fbb8 100644
--- a/index.html
+++ b/index.html
@@ -11,7 +11,7 @@
   <meta name="theme-color" content="#131a2e">
   <meta name="apple-mobile-web-app-status-bar-style" content="#131a2e" />
   <link rel="apple-touch-icon" href="./public/img/App.png">
-  <title>Composite</title>
+  <title>BingX</title>
 </head>
 
 <body>
diff --git a/relicon.png b/relicon.png
index 04db19c..dc5ce5e 100644
--- a/relicon.png
+++ b/relicon.png
Binary files differ
diff --git a/src/assets/imgs/logo.png b/src/assets/imgs/logo.png
index ce56378..dc5ce5e 100644
--- a/src/assets/imgs/logo.png
+++ b/src/assets/imgs/logo.png
Binary files differ
diff --git a/src/components/fx-footer/index.vue b/src/components/fx-footer/index.vue
index 3e501f9..98afc02 100644
--- a/src/components/fx-footer/index.vue
+++ b/src/components/fx-footer/index.vue
@@ -138,10 +138,10 @@
   //   active: new URL('@/assets/imgs/footer/news-active.png', import.meta.url),
   //   inactive: new URL('@/assets/imgs/footer/news.png', import.meta.url),
   // },
-  documentation: {
-    active: new URL('@/assets/imgs/footer/quotes-active.png', import.meta.url),
-    inactive: new URL('@/assets/imgs/footer/quotes.png', import.meta.url),
-  },
+  // documentation: {
+  //   active: new URL('@/assets/imgs/footer/quotes-active.png', import.meta.url),
+  //   inactive: new URL('@/assets/imgs/footer/quotes.png', import.meta.url),
+  // },
   trade: {
     active: new URL('@/assets/imgs/footer/trade-active.png', import.meta.url),
     inactive: new URL('@/assets/imgs/footer/trade.png', import.meta.url),
@@ -150,10 +150,10 @@
   //   active: new URL('@/assets/imgs/footer/funds-active.png', import.meta.url),
   //   inactive: new URL('@/assets/imgs/footer/funds.png', import.meta.url),
   // },
-  mine: {
-    active: new URL('@/assets/imgs/footer/menu-active.png', import.meta.url),
-    inactive: new URL('@/assets/imgs/footer/menu.png', import.meta.url),
-  },
+  // mine: {
+  //   active: new URL('@/assets/imgs/footer/menu-active.png', import.meta.url),
+  //   inactive: new URL('@/assets/imgs/footer/menu.png', import.meta.url),
+  // },
   assets: {
     active: new URL('@/assets/imgs/footer/assets-active.png', import.meta.url),
     inactive: new URL('@/assets/imgs/footer/assets.png', import.meta.url),
diff --git a/src/config/index.js b/src/config/index.js
index aca2de8..6fef215 100644
--- a/src/config/index.js
+++ b/src/config/index.js
@@ -34,19 +34,19 @@
 export const defaultSeconds = 1 * 24 * 60 * 60 * 1000
 
 // const ENV_DEV = 'zhapi.coinbtcs.com' // dev
-const ENV_DEV = 'openapi.yanshiz.com' // dev
-// const ENV_DEV = '192.168.10.13:8086' // dev
+const ENV_DEV = 'bingxapi.graborder.org' // dev
+// const ENV_DEV = '192.168.10.8:8086' // dev
 
 // const ENV_PRO = 'qheufhj.site' //  app域名
 // const ENV_PRO = window.location.hostname // 接口域名跟随 H5zhapi.coinbtcs.com
-const ENV_PRO = 'openapi.yanshiz.com' // 接口域名跟随 H5zhapi.coinbtcs.com
+const ENV_PRO = 'bingxapi.graborder.org' // 接口域名跟随 H5zhapi.coinbtcs.com
 
 let base_url = ''
 let ws_url = ''
 let host_url = ''
 if (import.meta.env.MODE === 'development') {
-    host_url = 'http://' + ENV_DEV
-    base_url = 'http://' + ENV_DEV
+    host_url = 'https://' + ENV_DEV
+    base_url = 'https://' + ENV_DEV
     ws_url = 'ws://' + ENV_DEV + '/api/websocket'
 } else {
     host_url = 'https://' + ENV_PRO
@@ -54,7 +54,7 @@
     ws_url = 'wss://' + ENV_PRO + '/api/websocket'
 }
 
-let imgUrl = 'https://okxh5.yanshiz.com' // 暂时的 单独的图片地址
+let imgUrl = 'https://bingx.graborder.org' // 暂时的 单独的图片地址
 
 export const BASE_URL = base_url
 export const WS_URL = ws_url
diff --git a/src/views/cryptos/Recharge/rechargeList.vue b/src/views/cryptos/Recharge/rechargeList.vue
index a44367c..1a69330 100644
--- a/src/views/cryptos/Recharge/rechargeList.vue
+++ b/src/views/cryptos/Recharge/rechargeList.vue
@@ -17,7 +17,7 @@
             <img src="../../../assets/image/symbol/usdt.png" class="w-92 h-92" />
             <div class="text-grey font-26 mt-32">{{ $t('USDT充值') }}</div>
           </div>
-          <div class="item-view  flex flex-col items-center justify-center text-center w-189 h-220 box-border"
+          <!-- <div class="item-view  flex flex-col items-center justify-center text-center w-189 h-220 box-border"
             @click="selectSymbol('btc')">
             <img src="../../../assets/image/symbol/btc.png" class="w-92 h-92" />
             <div class="text-grey font-26 mt-32">{{ $t('BTC充值') }}</div>
@@ -26,7 +26,7 @@
             @click="selectSymbol('eth')">
             <img src="../../../assets/image/symbol/eth.png" class="w-92 h-92" />
             <div class="text-grey font-26 mt-32">{{ $t('ETH充值') }}</div>
-          </div>
+          </div> -->
         </div>
       </div>
       <!-- <div class="textColor mt-40">
diff --git a/src/views/homePage/index.vue b/src/views/homePage/index.vue
index 9332b6b..3756286 100644
--- a/src/views/homePage/index.vue
+++ b/src/views/homePage/index.vue
@@ -83,8 +83,12 @@
 import { useStore } from "vuex";
 import { TIME_OUT } from "@/config";
 import { useUserStore } from '@/store/user';
+import { setStorage,getStorage } from '@/utils/index.js';
+  let catchSymbol = getStorage('symbol')
+  if(!catchSymbol){
+	  setStorage('symbol', 'btcusdt');
+  }
 const userStore = useUserStore()
-
 const { t } = useI18n()
 const router = useRouter()
 const store = useStore();
diff --git a/src/views/register/index.vue b/src/views/register/index.vue
index dc0613c..3640bd3 100644
--- a/src/views/register/index.vue
+++ b/src/views/register/index.vue
@@ -4,12 +4,12 @@
         <Step :step="1"></Step>
         <div class="title textColor">{{ $t('register') }}</div>
         <div class="flex re-tab">
-            <div class="textColor1" :class="activeIndex == 0 ? 'active' : ''" @click="changeIndex(0)">{{
+            <!-- <div class="textColor1" :class="activeIndex == 0 ? 'active' : ''" @click="changeIndex(0)">{{
                 $t('account')
-            }}</div>
-            <!-- <div class="textColor1" :class="activeIndex == 1 ? 'active' : ''" @click="changeIndex(1)">{{ $t('email') }}
+            }}</div> -->
+            <div class="textColor1" :class="activeIndex == 1 ? 'active' : ''" @click="changeIndex(1)">{{ $t('email') }}
             </div>
-            <div class="textColor1" :class="activeIndex == 2 ? 'active' : ''" @click="changeIndex(2)">{{
+            <!-- <div class="textColor1" :class="activeIndex == 2 ? 'active' : ''" @click="changeIndex(2)">{{
                 $t('phoneNum')
             }}</div> -->
         </div>
@@ -90,7 +90,7 @@
 const safeword = ref('')
 const fundPassword = ref('')
 const refundPassword = ref('')
-const activeIndex = ref(0)
+const activeIndex = ref(1)
 const typeText = ref('password')
 let isArea = ref(false)
 let dialCode = ref(0)
diff --git a/yarn.lock b/yarn.lock
index 9560802..c7444f1 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1128,9 +1128,9 @@
   dependencies:
     "is-arrayish" "^0.2.1"
 
-"esbuild-darwin-64@0.15.18":
-  "integrity" "sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg=="
-  "resolved" "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.18.tgz"
+"esbuild-windows-64@0.15.18":
+  "integrity" "sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw=="
+  "resolved" "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.18.tgz"
   "version" "0.15.18"
 
 "esbuild@^0.15.9":
@@ -1420,11 +1420,6 @@
   "integrity" "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
   "resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
   "version" "1.0.0"
-
-"fsevents@~2.3.2":
-  "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="
-  "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"
-  "version" "2.3.2"
 
 "function-bind@^1.1.1":
   "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="

--
Gitblit v1.9.3