1
jhzh
2025-08-05 e7657b7014971de552045a192c0e6643b8f8be47
1
11 files modified
64 ■■■■ changed files
.env 2 ●●● patch | view | raw | blame | history
.gitignore 1 ●●●● patch | view | raw | blame | history
index.html 2 ●●● patch | view | raw | blame | history
relicon.png patch | view | raw | blame | history
src/assets/imgs/logo.png patch | view | raw | blame | history
src/components/fx-footer/index.vue 16 ●●●● patch | view | raw | blame | history
src/config/index.js 12 ●●●● patch | view | raw | blame | history
src/views/cryptos/Recharge/rechargeList.vue 4 ●●●● patch | view | raw | blame | history
src/views/homePage/index.vue 6 ●●●● patch | view | raw | blame | history
src/views/register/index.vue 10 ●●●● patch | view | raw | blame | history
yarn.lock 11 ●●●● patch | view | raw | blame | history
.env
@@ -1,2 +1,2 @@
VITE_APP__TITLE = "Composite"
VITE_APP__TITLE = "BingX"
VUE_APP_THEME = "dark"
.gitignore
@@ -22,3 +22,4 @@
*.njsproj
*.sln
*.sw?
dist.rar
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>
relicon.png

src/assets/imgs/logo.png

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),
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
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">
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();
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)
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=="