Browse Source

首页、注册页、头部导航、底部样式、提币功能更新

master
luyisha 2 years ago
parent
commit
d9b2457340
  1. 11
      src/api/member.js
  2. 2
      src/api/server/index.js
  3. BIN
      src/assets/img/bg/radial_bg.png
  4. BIN
      src/assets/img/fas fa-user-plus@3x.png
  5. BIN
      src/assets/img/features/1.png
  6. BIN
      src/assets/img/features/2.png
  7. BIN
      src/assets/img/features/3.png
  8. BIN
      src/assets/img/features/4.png
  9. BIN
      src/assets/img/features/5.png
  10. BIN
      src/assets/img/features/6.png
  11. BIN
      src/assets/img/features/7.png
  12. BIN
      src/assets/img/features/8.png
  13. BIN
      src/assets/img/features/9.png
  14. BIN
      src/assets/img/features/stt.png
  15. BIN
      src/assets/img/illustration_1.png
  16. BIN
      src/assets/img/illustration_2.png
  17. 2
      src/components/CommonFooter.vue
  18. 14
      src/components/CommonHeader.vue
  19. 70
      src/i18n/de.json
  20. 66
      src/i18n/en.json
  21. 72
      src/i18n/fra.json
  22. 70
      src/i18n/it.json
  23. 72
      src/i18n/jp.json
  24. 68
      src/i18n/kor.json
  25. 78
      src/i18n/pt.json
  26. 72
      src/i18n/spa.json
  27. 84
      src/i18n/tr.json
  28. 62
      src/i18n/tw.json
  29. 481
      src/views/home/index.vue
  30. 36
      src/views/signUp/index.vue
  31. 81
      src/views/wallet/exchange-assets.vue

11
src/api/member.js

@ -145,6 +145,17 @@ class Member {
static agent(data){ static agent(data){
return server.post('/agent/register',data) return server.post('/agent/register',data)
} }
/**
* 注册gc验证码
* @param data {email,token}
*/
static sendGCode() {
return server.get(`/register/Graph_che`);
}
// 提币获取邮箱验证码
static getWdcode(data){
return server.get(`/user/wdcode`,{params:data});
}
} }
export default Member; export default Member;

2
src/api/server/index.js

@ -59,7 +59,7 @@ Object.assign(settings, {
// api请求根地址 打包使用完整地址 调试使用本地服务器代理 避免跨域 // api请求根地址 打包使用完整地址 调试使用本地服务器代理 避免跨域
// baseURL: process.env.NODE_ENV == 'production' ? 'http://qkladmin2.ruanmeng.top/api/' : '/api/', // baseURL: process.env.NODE_ENV == 'production' ? 'http://qkladmin2.ruanmeng.top/api/' : '/api/',
// baseURL: process.env.NODE_ENV == 'production' ? 'https://guanli.coin.amatak.net/api/' : '/api/', // baseURL: process.env.NODE_ENV == 'production' ? 'https://guanli.coin.amatak.net/api/' : '/api/',
baseURL: process.env.NODE_ENV == 'production' ? 'https://xmg.xusexchange.com/api/' : '/api/', baseURL: process.env.NODE_ENV == 'production' ? 'https://xmg.xusexchange.com/api/' : 'https://mgg.cxisux.com/api/',
// baseURL: 'https://aaccdd.kixcoin.org/api/' , // baseURL: 'https://aaccdd.kixcoin.org/api/' ,
// baseURL: 'https://guanli.coin.amatak.net/api/', // baseURL: 'https://guanli.coin.amatak.net/api/',
// baseURL: 'https://api.hipc.world/', // baseURL: 'https://api.hipc.world/',

BIN
src/assets/img/bg/radial_bg.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 754 KiB

BIN
src/assets/img/fas fa-user-plus@3x.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

BIN
src/assets/img/features/1.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 61 KiB

BIN
src/assets/img/features/2.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 89 KiB

After

Width:  |  Height:  |  Size: 65 KiB

BIN
src/assets/img/features/3.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 86 KiB

BIN
src/assets/img/features/4.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

BIN
src/assets/img/features/5.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

BIN
src/assets/img/features/6.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 755 B

After

Width:  |  Height:  |  Size: 77 KiB

BIN
src/assets/img/features/7.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 274 B

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
src/assets/img/features/8.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 713 B

After

Width:  |  Height:  |  Size: 1005 B

BIN
src/assets/img/features/9.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 B

BIN
src/assets/img/features/stt.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 815 KiB

After

Width:  |  Height:  |  Size: 186 KiB

BIN
src/assets/img/illustration_1.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 353 KiB

After

Width:  |  Height:  |  Size: 97 KiB

BIN
src/assets/img/illustration_2.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 461 KiB

2
src/components/CommonFooter.vue

@ -328,7 +328,7 @@ export default {
<style scoped lang="scss"> <style scoped lang="scss">
.footer { .footer {
background-color: #17161D; background-color: #000;
border-top: none; border-top: none;
.footer-upper-section { .footer-upper-section {
padding: 0; padding: 0;

14
src/components/CommonHeader.vue

@ -1,6 +1,6 @@
<template> <template>
<header id="common-header" :class="[`light-bb`, hook]"> <header id="common-header" :class="[`light-bb`, hook]">
<nav class="navbar navbar-expand-lg" style="background-color: #101010;"> <nav class="navbar navbar-expand-lg" style="background-color: #141414;">
<a class="navbar-brand" href="#/"> <a class="navbar-brand" href="#/">
<img :src="appConfig.head_logo" alt="logo"/> <img :src="appConfig.head_logo" alt="logo"/>
<!-- <img src="../assets/img/logo.png" alt="logo" style="width:102px;height:30px"/> --> <!-- <img src="../assets/img/logo.png" alt="logo" style="width:102px;height:30px"/> -->
@ -195,11 +195,11 @@
<template v-else> <template v-else>
<li class="nav-item dropdown no-login" style="width:auto"> <li class="nav-item dropdown no-login" style="width:auto">
<router-link to="/sign-in" class="btn btn-sm rounded-pill" href="#" tag="div" <router-link to="/sign-in" class="btn btn-sm rounded-pill" href="#" tag="div"
role="button" style="margin:0 15px;color:#fff;">{{ $t('common.sign_in') }} role="button" style="margin:0 15px;color:#D1712E;border: 1px solid #D1712E;">{{ $t('common.sign_in') }}
</router-link> </router-link>
<router-link to="/sign-up" <router-link to="/sign-up"
class="btn btn-sm rounded-pill" href="#" class="btn btn-sm rounded-pill" href="#"
tag="div" role="button" style="color:#fff;background-color: #EABB71;">{{ $t('common.sign_up') }} tag="div" role="button" style="color:#fff;background-color: #D1712E;">{{ $t('common.sign_up') }}
</router-link> </router-link>
</li> </li>
</template> </template>
@ -288,7 +288,7 @@ export default {
}, },
learn: { learn: {
label: this.$t("common.college"), label: this.$t("common.college"),
url: "", url: "/college",
}, },
college: { college: {
label: this.$t("common.college"), label: this.$t("common.college"),
@ -624,15 +624,15 @@ color: #fff !important;
.navbar-nav { .navbar-nav {
.nav-link { .nav-link {
color: #fff; color: #fff;
font-size: 14px; font-size: 18px;
} }
} }
.nav-bar .router-link-active { .nav-bar .router-link-active {
// color: #c99445; // color: #c99445;
// color: black; // color: black;
color: #EABB71; color: #D1712E;
border-bottom: 2px solid #EABB71 !important; border-bottom: 2px solid #D1712E !important;
// background-color:rgba(53, 83, 210, 0.2) ; // background-color:rgba(53, 83, 210, 0.2) ;
} }

70
src/i18n/de.json

@ -184,7 +184,8 @@
"footerTips1":"Risikoinvestitionen auf dem Markt sollten vorsichtig sein", "footerTips1":"Risikoinvestitionen auf dem Markt sollten vorsichtig sein",
"footerTips2":"Rechtliche Hinweise: Die Website wird von {name} Firma betrieben", "footerTips2":"Rechtliche Hinweise: Die Website wird von {name} Firma betrieben",
"footerTips3":"Risikotipp: Digital Asset Trading kann zu Ihrem Verlust des Kapitals führen, stellen Sie bitte sicher, dass Sie die Risiken vollständig verstehen", "footerTips3":"Risikotipp: Digital Asset Trading kann zu Ihrem Verlust des Kapitals führen, stellen Sie bitte sicher, dass Sie die Risiken vollständig verstehen",
"footerTips4":"Eingeschränkte Gebiete: nicht in der Lage, Gebietsansässigen bestimmter Länder (z. B. Israel und der Islamischen Republik China) Dienstleistungen zu erbringen" "footerTips4":"Eingeschränkte Gebiete: nicht in der Lage, Gebietsansässigen bestimmter Länder (z. B. Israel und der Islamischen Republik China) Dienstleistungen zu erbringen",
"GraphicValidation": "Grafische Überprüfung"
}, },
"exchange": { "exchange": {
"search":"Suche", "search":"Suche",
@ -1036,33 +1037,52 @@
"m4":"Stornierung der Bestellung" "m4":"Stornierung der Bestellung"
}, },
"homeNewText": { "homeNewText": {
"aa1": "Kryptowährungstor", "aa1": "Starten Sie Ihre Kryptowährungsinvestition",
"aa2": "Sicherer, schneller und einfacher Handel mit über 100 Kryptowährungen", "aa2": "Sicher, stabil und effizient",
"aa3": "Registrieren Sie sich per E-Mail", "aa3": "Jetzt registrieren",
"aa4": "Beginnen Sie jetzt mit dem Handel", "aa4": "Sofort mit dem Handel beginnen",
"aa5": "Markt Trend", "aa5": "Beliebte Kryptowährungen",
"aa6": "Digital Asset Quote Express", "aa6": "Digital Asset Quote Express",
"aa7": "Währung", "aa7": "Währung",
"bb1": "Aktueller Preis (USD)", "bb1": "Aktuellster Preis (USD)",
"bb2": "24-Stunden-Erhöhung", "bb2": "24-Stunden-Erhöhung",
"bb3": "24-Stunden-Handelsvolumen", "bb3": "24h-Handelsvolumen",
"bb4": "Kryptowährungsaustausch für alle", "bb4": "Eine Kryptowährungsbörse, die das Vertrauen der Benutzer verdient",
"bb5": "Beginnen Sie hier mit dem Handel und erleben Sie eine bessere Kryptowährungsreise", "bb5": "Bei XXXXXX kaufen und über 100 Kryptowährungen handeln",
"bb6": "Persönlich", "bb6": "Starke unabhängige Forschungs- und Entwicklungskapazitäten",
"bb7": "Eine Kryptowährungsbörse für alle. Die vertrauenswürdigste führende Handelsplattform mit einer großen Auswahl an Währungen", "bb7": "Entwickeln Sie das Handelssystem der dritten Generation unabhängig von 0 auf 1",
"cc1": "Geschäft", "bb8": "Erstellen Sie das ultimative Handelserlebnis mit hervorragender Leistung",
"cc2": "Entwickelt für Unternehmen und Institutionen. Bereitstellung von Kryptolösungen für institutionelle Anleger und Unternehmen", "bb9": "Globales Layout",
"cc3": "Entwickler", "bb10": "Globales Elitetreffen",
"cc4": "Entwickelt für Entwickler, damit Entwickler die Tools und APIs der Zukunft von Web3 erstellen können", "bb11": "Das Team ist über die ganze Welt verteilt",
"cc5": "Handeln Sie jederzeit und überall", "bb12": "Super Spot",
"bb13": "Exklusive Einführung der Spot-Einstandspreisfunktion",
"bb14": "Erstellen Sie ein Spothandelserlebnis auf Vertragsebene",
"bb15": "Höchste Sicherheit",
"bb16": "Risikokontrolle",
"bb17": "Doppelte Mittel zum Schutz der Sicherheit Ihrer Vermögenswerte",
"bb18": "Perfektes Risikokontrollsystem",
"bb19": "Doppelpreis-Liquidationsschutzmechanismus",
"bb20": "Reduzieren Sie das Risiko einer Benutzerliquidation",
"bb21": "7*24-Stunden-Service",
"bb22": "1-Minuten-Reaktionsmechanismus",
"bb23": "Globale Nutzer rund um die Uhr bedienen",
"cc5": "Überall handeln",
"cc8": "Bleiben Sie mit unserer App und unserem Desktop-Client auf dem Laufenden",
"cc6": "QR-Code scannen", "cc6": "QR-Code scannen",
"cc7": "Laden Sie die Android/IOS-App herunter", "cc7": "Android/IOS-App herunterladen",
"dd1": "Sicher und stabil, ohne Unfälle", "dd1": "Einzigartiges Handelserlebnis",
"dd2": "Mehrere Sicherheitsstrategien und eine 100-prozentige Reservegarantie stellen sicher, dass es seit seiner Gründung zu keinen Sicherheitsvorfällen gekommen ist.", "dd2": "Ein bahnbrechendes Tool für Investitionen in Kryptowährungen",
"dd3": "Handeln Sie Krypto-Assets einfach und bequem", "dd3": "Drei wichtige Stop-Profit- und Stop-Loss-Funktionen",
"dd4": "Bei xxxxxx sind die Produkte leicht zu verstehen, der Transaktionsprozess bequem und die Blockchain-Asset-Service-Plattform aus einer Hand", "dd4": "xxxxxx bietet drei Modi: Gewinnmitnahme und Stop-Loss für alle Positionen, Gewinnmitnahme und Stop-Loss für einige Positionen und Gewinnmitnahme und Stop-Loss beim Auslösepreis, um Benutzern die Kontrolle von Transaktionsrisiken zu erleichtern",
"dd5": "Derivate", "dd5": "Bis zu 50 verschiedene Take-Profit- und Stop-Loss-Punkte",
"dd6": "Sie können Verträge auf über 100 Kryptowährungen mit bis zu 150-facher Hebelwirkung handeln und hohe Gewinne erzielen", "dd6": "Benutzer können jederzeit Take-Profit- und Stop-Loss-Punkte in Positionen und ausstehenden Aufträgen festlegen, um Risiken flexibel zu kontrollieren; gleichzeitig unterstützt es die Einrichtung von bis zu 50 Take-Profit- und Stop-Loss-Orders für gleiche Position mit unterschiedlichen Anzahlen und Preisen, einschließlich Limit-Orders. oder Marktpreis-Orders, um den unterschiedlichen Anlagestrategien der Benutzer gerecht zu werden.",
"dd7": "Hilfezentrum" "dd7": "Hilfecenter",
"ee1": "Globales Ranking",
"ee2": "Benutzer vertrauen uns",
"ee3": "Extrem niedrige Gebühren",
"ee4": "Länder",
"ee5": "Starten Sie jetzt Ihre Kryptowährungsinvestition"
} }
} }

66
src/i18n/en.json

@ -216,7 +216,8 @@
"footerTips2": "Legal Notice: The website is operated by {name}", "footerTips2": "Legal Notice: The website is operated by {name}",
"footerTips3": "Risk Tip: Digital asset trading may cause your principal loss, please make sure you fully understand the risks.", "footerTips3": "Risk Tip: Digital asset trading may cause your principal loss, please make sure you fully understand the risks.",
"footerTips4": "Restricted Areas: Unable to provide services to residents of specific countries / regions, such as Israel and the Islamic Republic of China", "footerTips4": "Restricted Areas: Unable to provide services to residents of specific countries / regions, such as Israel and the Islamic Republic of China",
"learn":"Learn" "learn":"Learn",
"GraphicValidation": "Graphical Verification"
}, },
"exchange": { "exchange": {
"search": "Search", "search": "Search",
@ -1154,33 +1155,52 @@
"UseNow": "USE NOW" "UseNow": "USE NOW"
}, },
"homeNewText": { "homeNewText": {
"aa1": "Cryptocurrency Gate", "aa1": "Start your cryptocurrency investment",
"aa2": "Safe, fast and easy trade on over 100 cryptocurrencies", "aa2": "Safe, stable and efficient",
"aa3": "Register via email", "aa3": "Register now",
"aa4": "Start trading now", "aa4": "Start trading immediately",
"aa5": "Market trend", "aa5": "Popular cryptocurrencies",
"aa6": "Digital Asset Quote Express", "aa6": "Digital Asset Quote Express",
"aa7": "Currency", "aa7": "Currency",
"bb1": "Latest price (USD)", "bb1": "Latest price (USD)",
"bb2": "24h increase", "bb2": "24h increase",
"bb3": "24h trading volume", "bb3": "24h trading volume",
"bb4": "Cryptocurrency exchange for everyone", "bb4": "A cryptocurrency exchange worthy of users' trust",
"bb5": "Start trading here and experience a better cryptocurrency journey", "bb5": "Buy at XXXXXX and trade over 100 cryptocurrencies",
"bb6": "Personal", "bb6": "Strong independent research and development capabilities",
"bb7": "A cryptocurrency exchange for everyone. The most trustworthy leading trading platform with a wide range of currencies", "bb7": "Independently develop the third generation trading system from 0 to 1",
"cc1": "Business", "bb8": "Create the ultimate trading experience with excellent performance",
"cc2": "Built for businesses and institutions. Providing crypto solutions to institutional investors and businesses", "bb9": "Global layout",
"cc3": "Developer", "bb10": "Global elite gathering",
"cc4": "Built for developers, for developers to build the tools and APIs of the future of web3", "bb11": "The team is distributed around the world",
"cc5": "Trade anytime, anywhere", "bb12": "Super spot",
"cc6": "Scan QR code", "bb13": "Exclusive launch of spot cost price function",
"bb14": "Create a contract-level spot trading experience",
"bb15": "Top Security",
"bb16": "Risk Control",
"bb17": "Double means to protect the safety of your assets",
"bb18": "Perfect risk control system",
"bb19": "Double price liquidation protection mechanism",
"bb20": "Reduce the risk of user liquidation",
"bb21": "7*24 hours service",
"bb22": "1 minute response mechanism",
"bb23": "Serving global users around the clock",
"cc5": "Trade Anywhere",
"cc8": "Stay informed with our app and desktop client",
"cc6": "Scan the QR code",
"cc7": "Download Android/IOS App", "cc7": "Download Android/IOS App",
"dd1": "Safe and stable with zero accidents", "dd1": "Unique trading experience",
"dd2": "Multiple security strategies and 100% reserve guarantee ensure that no security incidents have occurred since its establishment.", "dd2": "A breakthrough tool for investing in cryptocurrencies",
"dd3": "Trade crypto assets simply and conveniently", "dd3": "Three major stop-profit and stop-loss functions",
"dd4": "In xxxxxx, the products are easy to understand, the transaction process is convenient, and the one-stop blockchain asset service platform", "dd4": "xxxxxx provides three modes: take profit and stop loss for all positions, take profit and stop loss for some positions, and take profit and stop loss at trigger price to help users control transaction risks",
"dd5": "Derivatives", "dd5": "Up to 50 different take profit and stop loss points",
"dd6": "You can trade contracts on 100+ cryptocurrencies with up to 150x leverage and earn high profits", "dd6": "Users can set take-profit and stop-loss points at any time in positions and pending orders to flexibly control risks; at the same time, it supports setting up to 50 take-profit and stop-loss orders for the same position with different numbers and prices, including limit orders. or market price order to meet users’ different investment strategies.",
"dd7": "Help Center" "dd7": "Help Center",
"ee1": "Global Ranking",
"ee2": "users trust us",
"ee3": "Ultra-Low Fees",
"ee4": "Countries",
"ee5": "Start your cryptocurrency investment now"
} }
} }

72
src/i18n/fra.json

@ -184,7 +184,8 @@
"footerTips1":"Les investissements risqués sur le marché doivent être prudents", "footerTips1":"Les investissements risqués sur le marché doivent être prudents",
"footerTips2":"Avis juridique: le site est géré par la société {name}.", "footerTips2":"Avis juridique: le site est géré par la société {name}.",
"footerTips3":"Conseils sur les risques: les opérations sur actifs numériques peuvent entraîner une perte de capital. Assurez - vous de bien comprendre les risques.", "footerTips3":"Conseils sur les risques: les opérations sur actifs numériques peuvent entraîner une perte de capital. Assurez - vous de bien comprendre les risques.",
"footerTips4":"Zones restreintes: les services ne sont pas disponibles pour les résidents de certains pays / régions, par exemple Israël et la République islamique d'Iran" "footerTips4":"Zones restreintes: les services ne sont pas disponibles pour les résidents de certains pays / régions, par exemple Israël et la République islamique d'Iran",
"GraphicValidation": "Vérification graphique"
}, },
"exchange": { "exchange": {
"search":"Recherche", "search":"Recherche",
@ -1036,33 +1037,52 @@
"m4":"Annulation de la commande" "m4":"Annulation de la commande"
}, },
"homeNewText": { "homeNewText": {
"aa1": "Porte de crypto-monnaie", "aa1": "Démarrez votre investissement en cryptomonnaie",
"aa2": "Échangez de manière sûre, rapide et facile sur plus de 100 crypto-monnaies", "aa2": "Sûr, stable et efficace",
"aa3": "Inscrivez-vous par e-mail", "aa3": "Inscrivez-vous maintenant",
"aa4": "Commencez à trader maintenant", "aa4": "Commencez à trader immédiatement",
"aa5": "tendance du marché", "aa5": "Cryptomonnaies populaires",
"aa6": "Devis d'actifs numériques Express", "aa6": "Citation d'actifs numériques Express",
"aa7": "Devise", "aa7": "Devise",
"bb1": "Dernier prix (USD)", "bb1": "Dernier prix (USD)",
"bb2": "Augmentation de 24h", "bb2": "Augmentation de 24h",
"bb3": "Volume des transactions sur 24 heures", "bb3": "Volume des échanges sur 24h",
"bb4": "Échange de crypto-monnaie pour tous", "bb4": "Un échange de cryptomonnaie digne de la confiance des utilisateurs",
"bb5": "Commencez à trader ici et vivez un meilleur voyage en matière de crypto-monnaie", "bb5": "Achetez chez XXXXXX et échangez plus de 100 crypto-monnaies",
"bb6": "personnel", "bb6": "Fortes capacités indépendantes de recherche et développement",
"bb7": "Un échange de crypto-monnaie pour tous. La plateforme de trading la plus fiable avec une large gamme de devises", "bb7": "Développer indépendamment le système commercial de troisième génération de 0 à 1",
"cc1": "ntreprise", "bb8": "Créez l'expérience de trading ultime avec d'excellentes performances",
"cc2": "Conçu pour les entreprises et les institutions. Fournir des solutions cryptographiques aux investisseurs institutionnels et aux entreprises", "bb9": "Mise en page globale",
"cc3": "Développeur", "bb10": "Rassemblement mondial de l'élite",
"cc4": "Conçu pour les développeurs, pour que les développeurs puissent créer les outils et les API du futur du web3", "bb11": "L'équipe est répartie dans le monde entier",
"cc5": "Négociez à tout moment et en tout lieu", "bb12": "Super endroit",
"cc6": "Scanner le code QR", "bb13": "Lancement exclusif de la fonction prix de revient spot",
"cc7": "Téléchargez l'application Android/IOS", "bb14": "Créer une expérience de trading au comptant au niveau du contrat",
"dd1": "Sûr et stable avec zéro accident", "bb15": "Sécurité supérieure",
"dd2": "De multiples stratégies de sécurité et une garantie de réserve à 100 % garantissent qu'aucun incident de sécurité ne s'est produit depuis sa création.", "bb16": "Contrôle des risques",
"dd3": "Échangez des actifs cryptographiques de manière simple et pratique", "bb17": "Double moyen pour protéger la sécurité de vos biens",
"dd4": "Dans xxxxxx, les produits sont faciles à comprendre, le processus de transaction est pratique et la plateforme unique de services d'actifs blockchain", "bb18": "Système de contrôle des risques parfait",
"dd5": "Dérivés", "bb19": "Mécanisme de protection contre la liquidation des prix doubles",
"dd6": "Vous pouvez négocier des contrats sur plus de 100 crypto-monnaies avec un effet de levier jusqu'à 150x et réaliser des bénéfices élevés", "bb20": "Réduire le risque de liquidation des utilisateurs",
"dd7": "Centre d'aide" "bb21": "Service 7*24 heures",
"bb22": "Mécanisme de réponse en 1 minute",
"bb23": "Au service des utilisateurs du monde entier 24 heures sur 24",
"cc5": "Commercez n'importe où",
"cc8": "Restez informé avec notre application et notre client de bureau",
"cc6": "Scannez le code QR",
"cc7": "Télécharger l'application Android/IOS",
"dd1": "Expérience de trading unique",
"dd2": "Un outil révolutionnaire pour investir dans les cryptomonnaies",
"dd3": "Trois fonctions majeures stop-profit et stop-loss",
"dd4": "xxxxxx propose trois modes : take profit et stop loss pour toutes les positions, take profit et stop loss pour certaines positions, et take profit et stop loss au prix de déclenchement pour aider les utilisateurs à contrôler les risques de transaction",
"dd5": "Jusqu'à 50 points de take profit et stop loss différents",
"dd6": "Les utilisateurs peuvent définir des points de take-profit et de stop-loss à tout moment dans les positions et les ordres en attente pour contrôler les risques de manière flexible ; en même temps, il prend en charge la configuration jusqu'à 50 ordres de take-profit et stop-loss pour le même position avec des nombres et des prix différents, y compris des ordres limités. ou un ordre au prix du marché pour répondre aux différentes stratégies d'investissement des utilisateurs.",
"dd7": "Centre d'aide",
"ee1": "Classement mondial",
"ee2": "les utilisateurs nous font confiance",
"ee3": "Frais ultra-bas",
"ee4": "Pays",
"ee5": "Commencez votre investissement en crypto-monnaie maintenant"
} }
} }

70
src/i18n/it.json

@ -184,7 +184,8 @@
"footerTips1":"Gli investimenti a rischio nel mercato dovrebbero essere cauti", "footerTips1":"Gli investimenti a rischio nel mercato dovrebbero essere cauti",
"footerTips2":"Avviso legale: il sito web è gestito da {nome} azienda", "footerTips2":"Avviso legale: il sito web è gestito da {nome} azienda",
"footerTips3":"Risk tip: trading digitale di asset può portare alla perdita del capitale, si prega di assicurarsi di comprendere pienamente i rischi", "footerTips3":"Risk tip: trading digitale di asset può portare alla perdita del capitale, si prega di assicurarsi di comprendere pienamente i rischi",
"footerTips4":"Zone ristrette: non sono in grado di fornire servizi ai residenti di paesi specifici /regioni, come Israele e la Repubblica Islamica di Cina" "footerTips4":"Zone ristrette: non sono in grado di fornire servizi ai residenti di paesi specifici /regioni, come Israele e la Repubblica Islamica di Cina",
"GraphicValidation": "Verifica grafica"
}, },
"exchange": { "exchange": {
"search":"ricerca", "search":"ricerca",
@ -1036,33 +1037,52 @@
"m4":"Annullamento dell'ordine" "m4":"Annullamento dell'ordine"
}, },
"homeNewText": { "homeNewText": {
"aa1": "Porta della criptovaluta", "aa1": "Inizia il tuo investimento in criptovaluta",
"aa2": "Fai trading sicuro, veloce e facile su oltre 100 criptovalute", "aa2": "Sicuro, stabile ed efficiente",
"aa3": "Registrati tramite e-mail", "aa3": "Registrati ora",
"aa4": "Inizia a fare trading adesso", "aa4": "Inizia a fare trading immediatamente",
"aa5": "tendenza di mercato", "aa5": "Criptovalute popolari",
"aa6": "Preventivo rapido di risorse digitali", "aa6": "Quotazione rapida di risorse digitali",
"aa7": "Valuta", "aa7": "Valuta",
"bb1": "Ultimo prezzo (USD)", "bb1": "Ultimo prezzo (USD)",
"bb2": "Incremento 24h", "bb2": "aumento 24 ore",
"bb3": "Volume degli scambi nelle 24 ore", "bb3": "Volume degli scambi nelle 24 ore",
"bb4": "Scambio di criptovaluta per tutti", "bb4": "Uno scambio di criptovaluta degno della fiducia degli utenti",
"bb5": "Inizia a fare trading qui e sperimenta un viaggio migliore nella criptovaluta", "bb5": "Acquista su XXXXXX e scambia oltre 100 criptovalute",
"bb6": "personale", "bb6": "Forti capacità di ricerca e sviluppo indipendenti",
"bb7": "Uno scambio di criptovaluta per tutti. La piattaforma di trading leader più affidabile con una vasta gamma di valute", "bb7": "Sviluppa in modo indipendente il sistema di trading di terza generazione da 0 a 1",
"cc1": "Attività commerciale", "bb8": "Crea l'esperienza di trading definitiva con prestazioni eccellenti",
"cc2": "Pensato per aziende e istituzioni. Fornire soluzioni crittografiche a investitori istituzionali e imprese", "bb9": "Layout globale",
"cc3": "Sviluppatore", "bb10": "Riunione dell'élite globale",
"cc4": "Costruito per gli sviluppatori, affinché gli sviluppatori possano creare gli strumenti e le API del futuro del web3", "bb11": "La squadra è distribuita in tutto il mondo",
"cc5": "Fai trading sempre e ovunque", "bb12": "Super spot",
"bb13": "Lancio esclusivo della funzione di prezzo di costo spot",
"bb14": "Crea un'esperienza di trading spot a livello di contratto",
"bb15": "Massima sicurezza",
"bb16": "Controllo del rischio",
"bb17": "Il doppio significa proteggere la sicurezza dei tuoi beni",
"bb18": "Perfetto sistema di controllo del rischio",
"bb19": "Meccanismo di protezione dalla liquidazione del doppio prezzo",
"bb20": "Ridurre il rischio di liquidazione dell'utente",
"bb21": "Servizio 7*24 ore",
"bb22": "Meccanismo di risposta in 1 minuto",
"bb23": "Servire utenti globali 24 ore su 24",
"cc5": "Fai trading ovunque",
"cc8": "Resta informato con la nostra app e il client desktop",
"cc6": "Scansiona il codice QR", "cc6": "Scansiona il codice QR",
"cc7": "Scarica l'applicazione Android/IOS", "cc7": "Scarica l'app Android/IOS",
"dd1": "Sicuro e stabile con zero incidenti", "dd1": "Esperienza di trading unica",
"dd2": "Molteplici strategie di sicurezza e una garanzia di riserva del 100% assicurano che non si sia verificato alcun incidente di sicurezza dalla sua istituzione.", "dd2": "Uno strumento rivoluzionario per investire in criptovalute",
"dd3": "Scambia risorse crittografiche in modo semplice e conveniente", "dd3": "Tre principali funzioni stop-profit e stop-loss",
"dd4": "In xxxxxx, i prodotti sono facili da comprendere, il processo di transazione è conveniente e la piattaforma di servizi asset blockchain unica", "dd4": "xxxxxx fornisce tre modalità: take profit e stop loss per tutte le posizioni, take profit e stop loss per alcune posizioni e take profit e stop loss al prezzo limite per aiutare gli utenti a controllare i rischi delle transazioni",
"dd5": "Derivati", "dd5": "Fino a 50 diversi punti take profit e stop loss",
"dd6": "Puoi scambiare contratti su oltre 100 criptovalute con una leva fino a 150x e ottenere profitti elevati", "dd6": "Gli utenti possono impostare punti di take profit e stop loss in qualsiasi momento nelle posizioni e negli ordini pendenti per controllare in modo flessibile i rischi; allo stesso tempo, supporta l'impostazione fino a 50 ordini di take profit e stop loss per il stessa posizione con numeri e prezzi diversi, inclusi ordini limite o ordine di prezzo di mercato per soddisfare le diverse strategie di investimento degli utenti.",
"dd7": "Centro assistenza" "dd7": "Centro assistenza",
"ee1": "Classifica globale",
"ee2": "gli utenti si fidano di noi",
"ee3": "Commissioni ultra-basse",
"ee4": "Paesi",
"ee5": "Inizia adesso il tuo investimento in criptovaluta"
} }
} }

72
src/i18n/jp.json

@ -184,7 +184,8 @@
"footerTips1":"市場にはリスクがありますので、慎重に投資してください。", "footerTips1":"市場にはリスクがありますので、慎重に投資してください。",
"footerTips2":"法律声明:このサイトは{name}会社が運営しています。", "footerTips2":"法律声明:このサイトは{name}会社が運営しています。",
"footerTips3":"リスク提示:デジタル資産取引は元金の損失を招く可能性があります。そのリスクを十分理解してください。", "footerTips3":"リスク提示:デジタル資産取引は元金の損失を招く可能性があります。そのリスクを十分理解してください。",
"footerTips4":"制限区域:特定の国/地域の住民にサービスを提供することができません。例えば、イスラエルとイスラム共和国です。" "footerTips4":"制限区域:特定の国/地域の住民にサービスを提供することができません。例えば、イスラエルとイスラム共和国です。",
"GraphicValidation": "グラフィカルな検証"
}, },
"exchange": { "exchange": {
"search":"検索", "search":"検索",
@ -1035,33 +1036,52 @@
"m4":"注文キャンセル" "m4":"注文キャンセル"
}, },
"homeNewText": { "homeNewText": {
"aa1": "暗号通貨ゲート", "aa1": "仮想通貨への投資を始めましょう",
"aa2": "100 を超える仮想通貨の安全、迅速、簡単な取引", "aa2": "安全、安定、効率的",
"aa3": "メールで登録する", "aa3": "今すぐ登録",
"aa4": "今すぐ取引を始めましょう", "aa4": "すぐに取引を開始します",
"aa5": "市場動向", "aa5": "人気のある暗号通貨",
"aa6": "デジタル資産見積エクスプレス", "aa6": "デジタル資産見積エクスプレス",
"aa7": "通貨", "aa7": "通貨",
"bb1": "最新価格(米ドル)", "bb1": "最新価格 (USD)",
"bb2": "24時間増加", "bb2": "24時間増加",
"bb3": "24時間の取引量", "bb3": "24 時間の取引高",
"bb4": "誰もが利用できる仮想通貨交換所", "bb4": "ユーザーの信頼に値する仮想通貨取引所",
"bb5": "ここで取引を開始して、より良い仮想通貨の旅を体験してください", "bb5": "XXXXX で購入して 100 以上の暗号通貨を取引",
"bb6": "個人的", "bb6": "強力な独立した研究開発能力",
"bb7": "誰もが利用できる仮想通貨取引所。 幅広い通貨を扱う最も信頼できる大手取引プラットフォーム", "bb7": "第三世代トレーディングシステムを0から1まで独自開発",
"cc1": "仕事", "bb8": "優れたパフォーマンスを備えた究極の取引体験を作成します",
"cc2": "企業や機関向けに構築されています。 機関投資家や企業への暗号ソリューションの提供", "bb9": "グローバル レイアウト",
"cc3": "開発者", "bb10": "世界的なエリートの集まり",
"cc4": "開発者向けに構築され、開発者が Web3 の将来のツールと API を構築できるようにする", "bb11": "チームは世界中に分散しています",
"cc5": "いつでもどこでも取引", "bb12": "スーパースポット",
"cc6": "QRコードをスキャンします", "bb13": "スポットコスト価格機能の独占的な開始",
"cc7": "Android/iOSアプリをダウンロード", "bb14": "契約レベルのスポット取引エクスペリエンスを作成する",
"dd1": "事故ゼロで安全・安定", "bb15": "トップセキュリティ",
"dd2": "複数のセキュリティ戦略と 100% の予備保証により、設立以来セキュリティ事故が発生していないことを保証します。", "bb16": "リスクコントロール",
"dd3": "暗号資産を簡単かつ便利に取引", "bb17": "資産の安全を守るという二重の意味があります",
"dd4": "xxxxxx では、製品が理解しやすく、取引プロセスが便利で、ワンストップのブロックチェーン資産サービス プラットフォームを提供します", "bb18": "完璧なリスク管理システム",
"dd5": "デリバティブ", "bb19": "二重価格清算保護メカニズム",
"dd6": "最大 150 倍のレバレッジで 100 以上の暗号通貨の契約を取引し、高い利益を得ることができます", "bb20": "ユーザーの清算のリスクを軽減します",
"dd7": "ヘルプセンター" "bb21": "7*24 時間サービス",
"bb22": "1 分間の応答メカニズム",
"bb23": "世界中のユーザーに 24 時間サービスを提供します",
"cc5": "どこでも取引",
"cc8": "アプリとデスクトップ クライアントに関する最新情報を入手してください",
"cc6": "QR コードをスキャンします",
"cc7": "Android/IOS アプリをダウンロード",
"dd1": "ユニークな取引体験",
"dd2": "暗号通貨に投資するための画期的なツール",
"dd3": "3 つの主要なストッププロフィット機能とストップロス機能",
"dd4": "xxxxxx は 3 つのモードを提供します: すべてのポジションの利食いとストップロス、一部のポジションの利食いとストップロス、ユーザーが取引リスクを制御できるようにトリガー価格での利食いとストップロスです。",
"dd5": "最大 50 個の異なるテイクプロフィットポイントとストップロスポイント",
"dd6": "ユーザーはポジションや未決注文にいつでも利食いとストップロスのポイントを設定して、リスクを柔軟に制御できます。同時に、最大 50 個の利食いとストップロスの注文の設定をサポートします。ユーザーのさまざまな投資戦略に合わせて、指値注文や市場価格注文など、同じポジションを異なる数量と価格で注文できます。」",
"dd7": "ヘルプセンター",
"ee1": "グローバルランキング",
"ee2": "ユーザーは私たちを信頼しています",
"ee3": "超低手数料",
"ee4": "国",
"ee5": "今すぐ仮想通貨への投資を始めましょう"
} }
} }

68
src/i18n/kor.json

@ -184,7 +184,8 @@
"footerTips1":"시장 에 위험 이 있 는 투 자 는 신중 해 야 한다.", "footerTips1":"시장 에 위험 이 있 는 투 자 는 신중 해 야 한다.",
"footerTips2":"법률 성명: 이 사 이 트 는 {name} 회사 에서 운영 합 니 다.", "footerTips2":"법률 성명: 이 사 이 트 는 {name} 회사 에서 운영 합 니 다.",
"footerTips3":"리 스 크 알림: 디지털 자산 거래 는 귀하 의 원금 손실 을 초래 할 수 있 으 므 로 귀하 가 그 중의 위험 을 충분히 이해 하도록 하 십시오.", "footerTips3":"리 스 크 알림: 디지털 자산 거래 는 귀하 의 원금 손실 을 초래 할 수 있 으 므 로 귀하 가 그 중의 위험 을 충분히 이해 하도록 하 십시오.",
"footerTips4":"제한 지역: 특정 국가 / 지역 의 주민 에 게 서 비 스 를 제공 할 수 없다. 예 를 들 어 이스라엘 과 이슬람 공화국 이다." "footerTips4":"제한 지역: 특정 국가 / 지역 의 주민 에 게 서 비 스 를 제공 할 수 없다. 예 를 들 어 이스라엘 과 이슬람 공화국 이다.",
"GraphicValidation": "그래픽 검증"
}, },
"exchange": { "exchange": {
"search":"수색 하 다.", "search":"수색 하 다.",
@ -1035,33 +1036,52 @@
"m4":"주문 취소" "m4":"주문 취소"
}, },
"homeNewText": { "homeNewText": {
"aa1": "암호화폐 게이트", "aa1": "암호화폐 투자를 시작하세요",
"aa2": "100개 이상의 암호화폐를 안전하고 빠르고 쉽게 거래하세요", "aa2": "안전하고 안정적이며 효율적",
"aa3": "이메일로 등록", "aa3": "지금 등록하세요",
"aa4": "지금 거래를 시작하세요", "aa4": "즉시 거래 시작",
"aa5": "시장 동향", "aa5": "인기 암호화폐",
"aa6": "디지털 자산 견적 익스프레스", "aa6": "디지털 자산 견적 익스프레스",
"aa7": "통화", "aa7": "통화",
"bb1": "최신 가격(USD)", "bb1": "최신 가격(USD)",
"bb2": "24시간 증가", "bb2": "24시간 증가",
"bb3": "24시간 거래량", "bb3": "24시간 거래량",
"bb4": "모두를 위한 암호화폐 거래소", "bb4": "사용자의 신뢰를 받을 수 있는 암호화폐 거래소",
"bb5": "여기에서 거래를 시작하고 더 나은 암호화폐 여행을 경험해보세요", "bb5": "XXXXXX에서 구매하고 100개 이상의 암호화폐를 거래하세요",
"bb6": "개인의", "bb6": "강력한 독립적인 연구 개발 역량",
"bb7": "모두를 위한 암호화폐 거래소. 다양한 통화를 제공하는 가장 신뢰할 수 있는 선도적인 거래 플랫폼", "bb7": "0에서 1까지 3세대 거래 시스템을 독립적으로 개발",
"cc1": "사업", "bb8": "뛰어난 성능으로 최고의 거래 경험을 만들어 보세요",
"cc2": "기업과 기관을 위해 제작되었습니다. 기관 투자자 및 기업에 암호화폐 솔루션 제공", "bb9": "전역 레이아웃",
"cc3": "개발자", "bb10": "글로벌 엘리트 모임",
"cc4": "개발자를 위해 제작되었으며 개발자가 web3의 미래를 위한 도구와 API를 구축할 수 있도록 제작되었습니다.", "bb11": "팀은 전 세계에 분산되어 있습니다.",
"cc5": "언제 어디서나 거래하세요", "bb12": "슈퍼 스팟",
"cc6": "QR 코드 스캔", "bb13": "현물 원가 기능 독점 출시",
"cc7": "안드로이드/IOS 앱 다운로드", "bb14": "계약 수준의 현물 거래 경험을 만들어보세요",
"dd1": "무사고로 안전하고 안정적입니다.", "bb15": "최고 보안",
"dd2": "다양한 보안 전략과 100% 예비 보장을 통해 설립 이후 보안 사고가 발생하지 않았음을 보장합니다.", "bb16": "위험 제어",
"dd3": "간단하고 편리하게 암호화폐 자산을 거래하세요", "bb17": "이중은 자산의 안전을 보호한다는 의미입니다.",
"dd4": "xxxxxx에서는 상품을 이해하기 쉽고, 거래 과정이 편리하며, 원스톱 블록체인 자산 서비스 플랫폼입니다.", "bb18": "완벽한 위험 관리 시스템",
"dd5": "파생상품", "bb19": "이중 가격 청산 방지 메커니즘",
"dd6": "최대 150배의 레버리지로 100개 이상의 암호화폐 계약을 거래하고 높은 수익을 올릴 수 있습니다", "bb20": "사용자 청산 위험 감소",
"dd7": "지원 센터" "bb21": "7*24시간 서비스",
"bb22": "1분 응답 메커니즘",
"bb23": "전 세계 사용자에게 24시간 내내 서비스 제공",
"cc5": "어디서나 거래하세요",
"cc8": "저희 앱과 데스크톱 클라이언트로 최신 정보를 받아보세요",
"cc6": "QR 코드를 스캔하세요",
"cc7": "Android/IOS 앱 다운로드",
"dd1": "독특한 거래 경험",
"dd2": "암호화폐 투자를 위한 획기적인 도구",
"dd3": "3가지 주요 손절매 및 손절매 기능",
"dd4": "xxxxxx는 세 가지 모드를 제공합니다. 모든 포지션에 대해 이익 실현 및 손실 중지, 일부 포지션에 대해 이익 실현 및 손실 중지, 트리거 가격에서 이익 실현 및 손실 중지를 제공하여 사용자가 거래 위험을 제어하는 ​​데 도움을 줍니다.",
"dd5": "최대 50개의 다양한 테이크프로핏 및 스톱로스 포인트",
"dd6": "사용자는 포지션 및 보류 주문에서 언제든지 이익 실현 및 손실 중지 지점을 설정하여 위험을 유연하게 제어할 수 있습니다. 또한 동일한 포지션에 대해 서로 다른 조건으로 최대 50개의 이익 실현 및 손실 중지 주문 설정을 지원합니다. 사용자의 다양한 투자 전략을 충족시키기 위해 지정가 주문 또는 시장 가격 주문을 포함한 숫자와 가격.",
"dd7": "도움말 센터",
"ee1": "글로벌 순위",
"ee2": "사용자들은 우리를 신뢰합니다",
"ee3": "초저렴한 수수료",
"ee4": "국가",
"ee5": "지금 암호화폐 투자를 시작하세요"
} }
} }

78
src/i18n/pt.json

@ -184,7 +184,8 @@
"footerTips1":"O mercado de capital de risco exige prudência", "footerTips1":"O mercado de capital de risco exige prudência",
"footerTips2":"Declaração legal: o site é operado pela empresa {nome}", "footerTips2":"Declaração legal: o site é operado pela empresa {nome}",
"footerTips3":"Dica de risco: as transações de ativos digitais podem levar à perda do seu capital, certifique-se de compreender plenamente os riscos envolvidos", "footerTips3":"Dica de risco: as transações de ativos digitais podem levar à perda do seu capital, certifique-se de compreender plenamente os riscos envolvidos",
"footerTips4":"Áreas restritas: impossibilidade de prestar serviços a residentes de países específicos /regiões, Como Israel e a República Islâmica Da China" "footerTips4":"Áreas restritas: impossibilidade de prestar serviços a residentes de países específicos /regiões, Como Israel e a República Islâmica Da China",
"GraphicValidation": "Verificação gráfica"
}, },
"exchange": { "exchange": {
"search":"busca", "search":"busca",
@ -1036,33 +1037,52 @@
"m4":"Cancelamento Da ordem" "m4":"Cancelamento Da ordem"
}, },
"homeNewText": { "homeNewText": {
"aa1": "Portão de criptomoeda", "aa1": "Kripto para yatırımınıza başlayın",
"aa2": "Negociação segura, rápida e fácil em mais de 100 criptomoedas", "aa2": "Güvenli, istikrarlı ve verimli",
"aa3": "Cadastre-se por e-mail", "aa3": "Hemen kaydolun",
"aa4": "Comece a negociar agora", "aa4": "Hemen ticarete başlayın",
"aa5": "tendência de mercado", "aa5": "Popüler kripto para birimleri",
"aa6": "Cotação Expressa de Ativos Digitais", "aa6": "Dijital Varlık Fiyat Teklifi Ekspresi",
"aa7": "Moeda", "aa7": "Para birimi",
"bb1": "Preço mais recente (USD)", "bb1": "Son fiyat (USD)",
"bb2": "Aumento de 24h", "bb2": "24 saatlik artış",
"bb3": "Volume de negociação em 24 horas", "bb3": "24 saatlik işlem hacmi",
"bb4": "Troca de criptomoedas para todos", "bb4": "Kullanıcıların güvenine layık bir kripto para borsası",
"bb5": "Comece a negociar aqui e experimente uma jornada melhor com criptomoedas", "bb5": "XXXXXX'ten satın alın ve 100'den fazla kripto para biriminde işlem yapın",
"bb6": "pessoal", "bb6": "Güçlü bağımsız araştırma ve geliştirme yetenekleri",
"bb7": "Uma troca de criptomoedas para todos. A plataforma de negociação líder mais confiável com uma ampla variedade de moedas", "bb7": "Üçüncü nesil ticaret sistemini 0'dan 1'e bağımsız olarak geliştirin",
"cc1": "negócios", "bb8": "Mükemmel performansla en üst düzey ticaret deneyimini yaratın",
"cc2": "Construído para empresas e instituições. Fornecendo soluções criptográficas para investidores institucionais e empresas", "bb9": "Genel düzen",
"cc3": "Desenvolvedor", "bb10": "Küresel seçkinlerin buluşması",
"cc4": "Construído para desenvolvedores, para que desenvolvedores construam as ferramentas e APIs do futuro da web3", "bb11": "Ekip dünya çapında dağılmıştır",
"cc5": "Negocie a qualquer hora, em qualquer lugar", "bb12": "Süper nokta",
"cc6": "Digitalize o código QR", "bb13": "Spot maliyet fiyatı fonksiyonunun özel lansmanı",
"cc7": "Baixe o aplicativo Android/IOS", "bb14": "Sözleşme düzeyinde spot ticaret deneyimi yaratın",
"dd1": "Seguro e estável com zero acidentes", "bb15": "Üst Düzey Güvenlik",
"dd2": "Múltiplas estratégias de segurança e garantia de 100% de reserva garantem que nenhum incidente de segurança ocorreu desde a sua criação.", "bb16": "Risk Kontrolü",
"dd3": "Negocie ativos criptográficos de forma simples e conveniente", "bb17": "Varlıklarınızın güvenliğini korumak için çifte yol",
"dd4": "Em xxxxxx, os produtos são fáceis de entender, o processo de transação é conveniente e a plataforma completa de serviços de ativos blockchain", "bb18": "Mükemmel risk kontrol sistemi",
"dd5": "Derivados", "bb19": "Çifte fiyat tasfiye koruma mekanizması",
"dd6": "Você pode negociar contratos em mais de 100 criptomoedas com alavancagem de até 150x e obter lucros elevados", "bb20": "Kullanıcının tasfiye riskini azaltın",
"dd7": "Centro de ajuda" "bb21": "7*24 saat hizmet",
"bb22": "1 dakikalık yanıt mekanizması",
"bb23": "Global kullanıcılara günün her saati hizmet veriyoruz",
"cc5": "Her Yerde Ticaret Yapın",
"cc8": "Uygulamamız ve masaüstü istemcimiz hakkında bilgi sahibi olun",
"cc6": "QR kodunu tarayın",
"cc7": "Android/IOS Uygulamasını İndir",
"dd1": "Benzersiz ticaret deneyimi",
"dd2": "Kripto para birimlerine yatırım yapmak için çığır açan bir araç",
"dd3": "Üç ana kar durdurma ve zararı durdurma işlevi",
"dd4": "xxxxxx üç mod sunar: tüm pozisyonlar için kar al ve zararı durdur, bazı pozisyonlar için kar al ve zararı durdur ve kullanıcıların işlem risklerini kontrol etmesine yardımcı olmak için tetik fiyatında kar al ve zararı durdur",
"dd5": "50'ye kadar farklı kar alma ve zararı durdurma puanı",
"dd6": "Kullanıcılar, riskleri esnek bir şekilde kontrol etmek için pozisyonlarda ve bekleyen emirlerde istedikleri zaman kar al ve zararı durdur noktaları belirleyebilir; aynı zamanda, 50'ye kadar kar al ve zararı durdur emri oluşturmayı destekler. Kullanıcıların farklı yatırım stratejilerini karşılamak için limit emirleri veya piyasa fiyatı emri dahil olmak üzere farklı sayı ve fiyatlarla aynı pozisyon.",
"dd7": "Yardım Merkezi",
"ee1": "Küresel Sıralama",
"ee2": "kullanıcılar bize güveniyor",
"ee3": "Ultra Düşük Ücretler",
"ee4": "Ülkeler",
"ee5": "Kripto para birimi yatırımınıza şimdi başlayın"
} }
} }

72
src/i18n/spa.json

@ -184,7 +184,8 @@
"footerTips1":"Capital de riesgo en el mercado", "footerTips1":"Capital de riesgo en el mercado",
"footerTips2":"Legal Statement: the site is operated by {name} Company", "footerTips2":"Legal Statement: the site is operated by {name} Company",
"footerTips3":"Consejos de riesgo: las transacciones de activos digitales pueden causar pérdidas de capital, por favor asegúrese de entender plenamente los riesgos", "footerTips3":"Consejos de riesgo: las transacciones de activos digitales pueden causar pérdidas de capital, por favor asegúrese de entender plenamente los riesgos",
"footerTips4":"Zonas restringidas: incapacidad para prestar servicios a la población de determinados países o regiones, como Israel y la República Islámica del Irán" "footerTips4":"Zonas restringidas: incapacidad para prestar servicios a la población de determinados países o regiones, como Israel y la República Islámica del Irán",
"GraphicValidation": "Verificación gráfica"
}, },
"exchange": { "exchange": {
"search":"Buscar", "search":"Buscar",
@ -1036,33 +1037,52 @@
"m4":"Orden cancelada" "m4":"Orden cancelada"
}, },
"homeNewText": { "homeNewText": {
"aa1": "Puerta de criptomonedas", "aa1": "Comienza tu inversión en criptomonedas",
"aa2": "Opere de forma segura, rápida y sencilla con más de 100 criptomonedas", "aa2": "Seguro, estable y eficiente",
"aa3": "Regístrese por correo electrónico", "aa3": "Regístrese ahora",
"aa4": "Comience a operar ahora", "aa4": "Comience a operar inmediatamente",
"aa5": "tendencia del mercado", "aa5": "Criptomonedas populares",
"aa6": "Cotización Express de Activos Digitales", "aa6": "Cotización Express de Activos Digitales",
"aa7": "Divisa", "aa7": "Moneda",
"bb1": "Último precio (USD)", "bb1": "Último precio (USD)",
"bb2": "Augmentation de 24h", "bb2": "aumento de 24h",
"bb3": "Volume des transactions sur 24 heures", "bb3": "volumen de operaciones 24 horas",
"bb4": "Volume des transactions sur 24 heures", "bb4": "Un intercambio de criptomonedas digno de la confianza de los usuarios",
"bb5": "Comience a operar aquí y experimente un mejor viaje con las criptomonedas", "bb5": "Compre en XXXXXX y opere con más de 100 criptomonedas",
"bb6": "personal", "bb6": "Fuertes capacidades independientes de investigación y desarrollo",
"bb7": "Un intercambio de criptomonedas para todos. La plataforma comercial líder más confiable con una amplia gama de monedas", "bb7": "Desarrollar de forma independiente el sistema comercial de tercera generación de 0 a 1",
"cc1": "Negocio", "bb8": "Cree la mejor experiencia comercial con un rendimiento excelente",
"cc2": "Creado para empresas e instituciones. Proporcionar soluciones criptográficas a inversores institucionales y empresas.", "bb9": "Diseño global",
"cc3": "Desarrollador", "bb10": "Reunión de élite global",
"cc4": "Creado para desarrolladores, para que los desarrolladores creen las herramientas y API del futuro de web3", "bb11": "El equipo está distribuido por todo el mundo",
"cc5": "Opere en cualquier momento y en cualquier lugar", "bb12": "Súper lugar",
"cc6": "Escanear código QR", "bb13": "Lanzamiento exclusivo de la función de precio de costo spot",
"bb14": "Crear una experiencia de negociación al contado a nivel de contrato",
"bb15": "Seguridad Máxima",
"bb16": "Control de riesgos",
"bb17": "Doble medio para proteger la seguridad de sus activos",
"bb18": "Perfecto sistema de control de riesgos",
"bb19": "Mecanismo de protección de liquidación de doble precio",
"bb20": "Reducir el riesgo de liquidación de usuarios",
"bb21": "Servicio 7*24 horas",
"bb22": "Mecanismo de respuesta de 1 minuto",
"bb23": "Atendiendo a usuarios globales las 24 horas",
"cc5": "Comercie en cualquier lugar",
"cc8": "Manténgase informado con nuestra aplicación y cliente de escritorio",
"cc6": "Escanear el código QR",
"cc7": "Descargar la aplicación Android/IOS", "cc7": "Descargar la aplicación Android/IOS",
"dd1": "Seguro y estable con cero accidentes.", "dd1": "Experiencia comercial única",
"dd2": "Múltiples estrategias de seguridad y una garantía de reserva del 100% garantizan que no se hayan producido incidentes de seguridad desde su creación.", "dd2": "Una herramienta innovadora para invertir en criptomonedas",
"dd3": "Opere con criptoactivos de forma sencilla y cómoda", "dd3": "Tres funciones principales de limitación de ganancias y pérdidas",
"dd4": "En xxxxxx, los productos son fáciles de entender, el proceso de transacción es conveniente y la plataforma integral de servicios de activos blockchain", "dd4": "xxxxxx proporciona tres modos: tomar ganancias y detener pérdidas para todas las posiciones, tomar ganancias y detener pérdidas para algunas posiciones y tomar ganancias y detener pérdidas al precio de activación para ayudar a los usuarios a controlar los riesgos de las transacciones",
"dd5": "Derivados", "dd5": "Hasta 50 puntos diferentes de toma de ganancias y stop loss",
"dd6": "Puede negociar contratos en más de 100 criptomonedas con un apalancamiento de hasta 150x y obtener grandes ganancias", "dd6": "Los usuarios pueden establecer puntos de toma de ganancias y stop-loss en cualquier momento en posiciones y órdenes pendientes para controlar de manera flexible los riesgos; al mismo tiempo, admite la configuración de hasta 50 órdenes de toma de ganancias y stop-loss para el misma posición con diferentes números y precios, incluidas órdenes limitadas u orden de precio de mercado para satisfacer las diferentes estrategias de inversión de los usuarios",
"dd7": "Centro de ayuda" "dd7": "Centro de ayuda",
"ee1": "Ranking Mundial",
"ee2": "los usuarios confían en nosotros",
"ee3": "Tarifas ultrabajas",
"ee4": "Países",
"ee5": "Comience su inversión en criptomonedas ahora"
} }
} }

84
src/i18n/tr.json

@ -184,7 +184,8 @@
"footerTips1":"Piyasa riski, yatırımın dikkatli olması gerekiyor", "footerTips1":"Piyasa riski, yatırımın dikkatli olması gerekiyor",
"footerTips2":"Yasal uyarı: Bu web sitesi {name} şirketi tarafından işletilmektedir.", "footerTips2":"Yasal uyarı: Bu web sitesi {name} şirketi tarafından işletilmektedir.",
"footerTips3":"Risk uyarısı: dijital varlık ticareti, müdürünüzü kaybetmenize neden olabilir, lütfen riskleri tam olarak anladığınızdan emin olun.", "footerTips3":"Risk uyarısı: dijital varlık ticareti, müdürünüzü kaybetmenize neden olabilir, lütfen riskleri tam olarak anladığınızdan emin olun.",
"footerTips4":"Kısıtlı alanlar: belirli ülkelerin/bölgelerin sakinlerine hizmet sağlayamamak, örneğin: İsrail ve İslam Cumhuriyeti" "footerTips4":"Kısıtlı alanlar: belirli ülkelerin/bölgelerin sakinlerine hizmet sağlayamamak, örneğin: İsrail ve İslam Cumhuriyeti",
"GraphicValidation": "Grafiksel doğrulama"
}, },
"exchange":{ "exchange":{
"search":"aramak", "search":"aramak",
@ -1034,35 +1035,54 @@
"m2":"Denetim hatası", "m2":"Denetim hatası",
"m3":"sipariş sonu", "m3":"sipariş sonu",
"m4":"siparişi iptal et" "m4":"siparişi iptal et"
}, },
"homeNewText": { "homeNewText": {
"aa1": "Kripto Para Kapısı", "aa1": "Inicie seu investimento em criptomoeda",
"aa2": "100'den fazla kripto para biriminde güvenli, hızlı ve kolay ticaret", "aa2": "Seguro, estável e eficiente",
"aa3": "E-posta yoluyla kayıt olun", "aa3": "Registre-se agora",
"aa4": "Şimdi ticarete başlayın", "aa4": "Comece a negociar imediatamente",
"aa5": "piyasa eğilimi", "aa5": "Criptomoedas populares",
"aa6": "Dijital Varlık Fiyat Teklifi Ekspres", "aa6": "Cotação Expressa de Ativos Digitais",
"aa7": "Para birimi", "aa7": "Moeda",
"bb1": "Son fiyat (USD)", "bb1": "Último preço (USD)",
"bb2": "24 saatlik artış", "bb2": "aumento de 24h",
"bb3": "24 saatlik işlem hacmi", "bb3": "Volume de negociação em 24 horas",
"bb4": "Herkes için kripto para borsası", "bb4": "Uma exchange de criptomoedas digna da confiança dos usuários",
"bb5": "Burada işlem yapmaya başlayın ve daha iyi bir kripto para birimi yolculuğunu deneyimleyin", "bb5": "Compre em XXXXXX e negocie mais de 100 criptomoedas",
"bb6": "kişisel", "bb6": "Fortes capacidades independentes de pesquisa e desenvolvimento",
"bb7": "Herkes için bir kripto para borsası. Çok çeşitli para birimleriyle en güvenilir lider ticaret platformu", "bb7": "Desenvolver de forma independente o sistema de negociação de terceira geração de 0 a 1",
"cc1": "İşletme", "bb8": "Crie a melhor experiência de negociação com excelente desempenho",
"cc2": "İşletmeler ve kurumlar için tasarlandı. Kurumsal yatırımcılara ve işletmelere kripto çözümleri sağlamak", "bb9": "Layout global",
"cc3": "Geliştirici", "bb10": "Reunião de elite global",
"cc4": "Geliştiriciler için, geliştiricilerin web3'ün geleceğinin araçlarını ve API'lerini oluşturmaları için tasarlandı", "bb11": "A equipe está distribuída pelo mundo",
"cc5": "İstediğiniz zaman, istediğiniz yerde ticaret yapın", "bb12": "Super local",
"cc6": "QR kodunu tarayın", "bb13": "Lançamento exclusivo da função preço de custo spot",
"cc7": "Android/IOS Uygulamasını İndirin", "bb14": "Crie uma experiência de negociação à vista em nível de contrato",
"dd1": "Sıfır kazayla güvenli ve istikrarlı", "bb15": "Segurança máxima",
"dd2": "Çoklu güvenlik stratejileri ve %100 rezerv garantisi, kuruluşundan bu yana hiçbir güvenlik olayının yaşanmamasını sağlar.", "bb16": "Controle de Risco",
"dd3": "Kripto varlıklarıyla basit ve rahat bir şekilde ticaret yapın", "bb17": "Duplo significa proteger a segurança de seus ativos",
"dd4": "Xxxxxxx'te ürünlerin anlaşılması kolaydır, işlem süreci uygundur ve tek noktadan blockchain varlık hizmeti platformu", "bb18": "Sistema de controle de risco perfeito",
"dd5": "Türevler", "bb19": "Mecanismo de proteção contra liquidação de preço duplo",
"dd6": "100'den fazla kripto para birimindeki sözleşmelerle 150 katına kadar kaldıraçla işlem yapabilir ve yüksek kar elde edebilirsiniz", "bb20": "Reduz o risco de liquidação do usuário",
"dd7": "Yardım Merkezi" "bb21": "Serviço 7*24 horas",
} "bb22": "Mecanismo de resposta de 1 minuto",
"bb23": "Atendendo usuários globais 24 horas por dia",
"cc5": "Negocie em qualquer lugar",
"cc8": "Mantenha-se informado com nosso aplicativo e cliente desktop",
"cc6": "Escaneie o código QR",
"cc7": "Baixar aplicativo Android/IOS",
"dd1": "Experiência comercial única",
"dd2": "Uma ferramenta inovadora para investir em criptomoedas",
"dd3": "Três funções principais de stop-profit e stop-loss",
"dd4": "xxxxxx oferece três modos: obter lucro e parar perdas para todas as posições, obter lucro e parar perdas para algumas posições e obter lucro e parar perdas no preço de gatilho para ajudar os usuários a controlar os riscos da transação",
"dd5": "Até 50 pontos diferentes de Take Profit e Stop Loss",
"dd6": "Os usuários podem definir pontos de take-profit e stop-loss a qualquer momento em posições e ordens pendentes para controlar os riscos de forma flexível; ao mesmo tempo, suporta a configuração de até 50 ordens de take-profit e stop-loss para o mesma posição com números e preços diferentes, incluindo ordens limitadas ou ordens de preço de mercado para atender às diferentes estratégias de investimento dos usuários.",
"dd7": "Central de Ajuda",
"ee1": "Classificação Global",
"ee2": "os usuários confiam em nós",
"ee3": "Taxas ultrabaixas",
"ee4": "Países",
"ee5": "Comece seu investimento em criptomoeda agora"
}
} }

62
src/i18n/tw.json

@ -217,7 +217,8 @@
"footerTips2": "法律聲明:該網站由{name}公司運營", "footerTips2": "法律聲明:該網站由{name}公司運營",
"footerTips3": "風險提示:數位資產交易有可能導致您的本金損失,請確保您充分理解其中的風險", "footerTips3": "風險提示:數位資產交易有可能導致您的本金損失,請確保您充分理解其中的風險",
"footerTips4": "受限地區:無法為特定國家/地區的居民提供服務,例如:以色列和伊斯蘭共和國", "footerTips4": "受限地區:無法為特定國家/地區的居民提供服務,例如:以色列和伊斯蘭共和國",
"learn":"學院" "learn":"學院",
"GraphicValidation": "圖形驗證"
}, },
"exchange": { "exchange": {
"search": "蒐索", "search": "蒐索",
@ -1078,33 +1079,52 @@
"m4":"訂單取消" "m4":"訂單取消"
}, },
"homeNewText": { "homeNewText": {
"aa1": "加密貨幣之門", "aa1": "開啓你的加密貨幣投資",
"aa2": "安全,快捷,輕鬆交易超過100種加密貨幣", "aa2": "安全、穩定、高效",
"aa3": "透過電子郵件註冊", "aa3": "立即註冊",
"aa4": "立即開始交易", "aa4": "立即開始交易",
"aa5": "市場趨勢", "aa5": "流行的加密貨幣",
"aa6": "數位資產行情速遞", "aa6": "數位資產行情速遞",
"aa7": "幣種", "aa7": "幣種",
"bb1": "最新價(USD)", "bb1": "最新價(USD)",
"bb2": "24h漲幅", "bb2": "24h漲幅",
"bb3": "24h成交量", "bb3": "24h成交量",
"bb4": "適合所有人的加密貨幣交易所", "bb4": "值得用戶信賴的加密貨幣交易所",
"bb5": "在這裡開始交易並體驗更好的加密貨幣之旅", "bb5": "在XXXXXX購買,交易100多種加密貨幣",
"bb6": "個人", "bb6": "强大自主研發能力",
"bb7": "適合所有人的加密貨幣交易所。 最值得信賴的領先交易平台,幣種豐富", "bb7": "從0到1自主研發第三代交易系統",
"cc1": "商務", "bb8": "打造卓越性能下的極緻交易體驗",
"cc2": "專為企業和機構打造。 為機構投資者和企業提供加密解決方案", "bb9": "全球化佈局",
"cc3": "開發者", "bb10": "全球精英匯聚",
"cc4": "專為開發者打造,供開發人員建構web3未來的工具和API", "bb11": "團隊分佈全球",
"cc5": "交易,隨時隨地", "bb12": "超級現貨",
"bb13": "獨家推出現貨成本價格功能",
"bb14": "打造合約級現貨交易體驗",
"bb15": "頂級安全保障",
"bb16": "風險控制",
"bb17": "雙重手段保障您的資產安全",
"bb18": "完善的風控體系",
"bb19": "雙價格強平保護機制",
"bb20": "降低用戶爆倉風險",
"bb21": "7*24小時服務",
"bb22": "1分鐘響應機制",
"bb23": "全天候服務全球用戶",
"cc5": "隨處交易",
"cc8": "通過我們的應用程序和桌面客戶端隨時瞭解情況",
"cc6": "掃描二維碼", "cc6": "掃描二維碼",
"cc7": "下載 Android/IOS App", "cc7": "下載 Android/IOS App",
"dd1": "安全穩定零事故", "dd1": "獨特的交易經驗",
"dd2": "多重安全策略保障、100%備用金保證,成立至今未發生安全事故、", "dd2": "投資加密貨幣的突破性工具",
"dd3": "簡單便捷交易加密資產", "dd3": "三大止盈止損功能",
"dd4": "在xxxxxx,產品簡單易懂、交易流程便捷,一站式區塊鏈資產服務平台", "dd4": "xxxxxx提供全部倉位止盈止損、部分倉位止盈止損、觸發價止盈止損三種模式,幫助用戶控制交易風險",
"dd5": "衍生性商品", "dd5": "最多50個不同的止盈止損點位",
"dd6": "您可以高達150倍的槓桿率交易100+加密貨幣的合約,賺取高額收益", "dd6": "用戶可以在倉位、挂單中隨時設置止盈止損點位,靈活控制風險;同時支持針對同一倉位不同張數和價格設置多達50個止盈止損單,包括限價單或市價單,滿足用戶不同投資策略",
"dd7": "幫助中心" "dd7": "幫助中心",
"ee1": "Global Ranking",
"ee2": "users trust us",
"ee3": "Ultra-Low Fees",
"ee4": "Countries",
"ee5": "立刻開啓你的加密貨幣投資"
} }
} }

481
src/views/home/index.vue

@ -353,28 +353,25 @@
<!-- </div>--> <!-- </div>-->
<!--中间显示4个图标--> <!--中间显示4个图标-->
<!-- 加密货币之门 --> <!-- 加密货币投资 -->
<div class="section illustration_area"> <div class="section illustration_area">
<div class="left"> <div class="left">
<div class="title">{{ $t("homeNewText.aa1") }}</div> <div class="title">{{ $t("homeNewText.aa1") }}</div>
<div style="font-size: 24px;margin: 25px auto 60px;padding-left: 36px;">{{ $t("homeNewText.aa2") }}</div> <div class="title" style="margin-bottom: 75px;">{{ $t("homeNewText.aa2") }}</div>
<router-link v-if="!isLogin" class="btn" :to="{name:'signUp'}"> <router-link v-if="!isLogin" class="jump_btn" :to="{name:'signUp'}">
<img src="../../assets/img/fas fa-user-plus@3x.png" alt="">
{{ $t("homeNewText.aa3") }} {{ $t("homeNewText.aa3") }}
</router-link> </router-link>
<router-link v-else class="btn" :to="{name:'exchange'}"> <router-link v-else class="jump_btn" :to="{name:'exchange'}">
<img src="../../assets/img/riFill-exchange-fill@3x.png" alt="">
{{ $t("homeNewText.aa4") }} {{ $t("homeNewText.aa4") }}
</router-link> </router-link>
</div> </div>
<div class="right"> <div class="right">
<img v-if="!isLogin" src="../../assets/img/illustration_1.png" alt="" style="width: 635px;height: 650px;"> <img src="../../assets/img/illustration_1.png" alt="" style="width: 520px;height: 520px;">
<img v-else src="../../assets/img/illustration_2.png" alt="" style="width: 635px;height: 650px;">
</div> </div>
</div> </div>
<div class="market_table" v-if="marketList[0]"> <div class="market_table" v-if="marketList[0]">
<div style="font-size: 42px;text-align: center;">{{ $t("homeNewText.aa5") }}</div> <div style="font-size: 40px;font-weight: bold;width: 1200px;margin: auto;">{{ $t("homeNewText.aa5") }}</div>
<div style="color: #999;line-height: 60px;font-size: 18px;text-align: center;">{{ $t("homeNewText.aa6") }}</div> <div style="width: 1200px;font-size: 20px;color: #707275;margin: 20px auto;">{{ $t("homeNewText.aa6") }}</div>
<div class="market_tr" style="color: #999;line-height: 60px;"> <div class="market_tr" style="color: #999;line-height: 60px;">
<div>{{ $t("homeNewText.aa7") }}</div> <div>{{ $t("homeNewText.aa7") }}</div>
<div>{{ $t("homeNewText.bb1") }}</div> <div>{{ $t("homeNewText.bb1") }}</div>
@ -386,82 +383,208 @@
<img class="icon" :src="item.coin_icon" alt=""> <img class="icon" :src="item.coin_icon" alt="">
{{ item.coin_name }} {{ item.coin_name }}
</div> </div>
<div>{{ item.price }}</div> <div>{{ item.price || item.close }}</div>
<div :class="item.increase >= 0 ? 'increace' : 'decreace'">{{ item.increaseStr }}</div> <div :class="item.increase >= 0 ? 'increaceAj' : 'decreaceAj'">{{ item.increaseStr }}</div>
<div style="margin-left: 17%;width: 8%;text-align: right;">{{ item.count }}</div> <div style="margin-left: 17%;width: 8%;text-align: right;">{{ item.count }}</div>
</div> </div>
</div> </div>
<!-- number count -->
<div class="num-info d-flex" v-if="0">
<div class="num-info-count">
<div class="num">5 {{ $t("common.million") }}+</div>
<div class="title">{{ $t("common.user") }}</div>
</div>
<div class="num-info-count">
<div class="num">92,115,351</div>
<div class="title">{{ $t("common.tradings") }}</div>
</div>
<!-- <div class="num-info-count">
<div class="num">12,689,199</div>
<div class="title">payments in local currency</div>
</div> -->
<div class="num-info-count">
<div class="num">8,464,594</div>
<div class="title">{{ $t("common.using") }}</div>
</div>
</div>
<!-- 适合所有人的加密货币交易所 --> <!-- 适合所有人的加密货币交易所 -->
<div style="text-align: center;font-size: 42px;font-weight: bold;">{{ $t("homeNewText.bb4") }}</div> <div style="width: 1200px;font-size: 40px;font-weight: bold;margin: 0px auto;">{{ $t("homeNewText.bb4") }}</div>
<div style="text-align: center;font-size: 20px;color: #908F94;margin: 20px auto 50px;">{{ $t("homeNewText.bb5") }}</div> <div style="width: 1200px;font-size: 20px;color: #707275;margin: 20px auto 50px;">{{ $t("homeNewText.bb5") }}</div>
<div class="card_area"> <div class="card_area">
<div class="card_item" style="background-color: #332E2F;"> <div class="card_item">
<div style="font-size: 24px;color: #908F94;margin-bottom:10px;"><img src="../../assets/img/features/6.png" />{{ $t("homeNewText.bb6") }}</div> <img src="../../assets/img/features/4.png" alt="">
<div style="font-size: 16px;color: #595558;">{{ $t("homeNewText.bb7") }}</div> <div style="font-size: 20px;color: #e7e7e7;margin-bottom:10px;">{{ $t("homeNewText.bb6") }}</div>
<div style="font-size: 14px;color: #707275;">{{ $t("homeNewText.bb7") }}</div>
<div style="font-size: 14px;color: #707275;">{{ $t("homeNewText.bb8") }}</div>
</div>
<div class="card_item">
<img src="../../assets/img/features/5.png" alt="">
<div style="font-size: 20px;color: #e7e7e7;margin-bottom:10px;">{{ $t("homeNewText.b9") }}</div>
<div style="font-size: 14px;color: #707275;">{{ $t("homeNewText.bb10") }}</div>
<div style="font-size: 14px;color: #707275;">{{ $t("homeNewText.bb11") }}</div>
</div>
<div class="card_item">
<img src="../../assets/img/features/2.png" alt="">
<div style="font-size: 20px;color: #e7e7e7;margin-bottom:10px;">{{ $t("homeNewText.bb12") }}</div>
<div style="font-size: 14px;color: #707275;">{{ $t("homeNewText.bb13") }}</div>
<div style="font-size: 14px;color: #707275;">{{ $t("homeNewText.bb14") }}</div>
</div>
<div class="card_item">
<img src="../../assets/img/features/6.png" alt="">
<div style="font-size: 20px;color: #e7e7e7;margin-bottom:10px;">{{ $t("homeNewText.bb15") }}</div>
<div style="font-size: 14px;color: #707275;">{{ $t("homeNewText.bb16") }}</div>
<div style="font-size: 14px;color: #707275;">{{ $t("homeNewText.bb17") }}</div>
</div> </div>
<div class="card_item" style="background-color: #262836;"> <div class="card_item">
<div style="font-size: 24px;color: #908F94;margin-bottom:10px;"><img src="../../assets/img/features/7.png" />{{ $t("homeNewText.cc1") }}</div> <img src="../../assets/img/features/1.png" alt="">
<div style="font-size: 16px;color: #595558;">{{ $t("homeNewText.cc2") }}</div> <div style="font-size: 20px;color: #e7e7e7;margin-bottom:10px;">{{ $t("homeNewText.bb18") }}</div>
<div style="font-size: 14px;color: #707275;">{{ $t("homeNewText.bb19") }}</div>
<div style="font-size: 14px;color: #707275;">{{ $t("homeNewText.bb20") }}</div>
</div> </div>
<div class="card_item" style="background-color: #2A2733;"> <div class="card_item">
<div style="font-size: 24px;color: #908F94;margin-bottom:10px;"><img src="../../assets/img/features/8.png" />{{ $t("homeNewText.cc3") }}</div> <img src="../../assets/img/features/3.png" alt="">
<div style="font-size: 16px;color: #595558;">{{ $t("homeNewText.cc4") }}</div> <div style="font-size: 20px;color: #e7e7e7;margin-bottom:10px;">{{ $t("homeNewText.bb21") }}</div>
<div style="font-size: 14px;color: #707275;">{{ $t("homeNewText.bb22") }}</div>
<div style="font-size: 14px;color: #707275;">{{ $t("homeNewText.bb23") }}</div>
</div> </div>
</div> </div>
<!-- build --> <!-- beginner's guide -->
<div style="text-align: center;font-size: 42px;font-weight: bold;">{{ $t("homeNewText.cc5") }}</div> <div style="width: 1200px;font-size: 40px;font-weight: 700;margin: 0px auto;">{{ $t("homeNewText.dd1") }}</div>
<div class="build-box"> <div style="width: 1200px;font-size: 20px;color: #707275;margin: 0px auto;">{{ $t("homeNewText.dd2") }}</div>
<div class="build-bottom d-flex"> <div class="lattest-news-section">
<!-- phone module --> <div class="beginner service">
<div class="build-right"> <!-- 标题 -->
<div class="build-right-phone"> <div class="service-title" v-if="0">
<img src="../../assets/img/features/styy.png" alt="mobile application" /> <div
class="text service-title-text1"
style="font-size: 40px; font-weight: 700; line-height: 71px"
>
{{ $t("homeNewText.dd1") }}
</div>
<div class="dotfive d-flex">
<div class="dotblue" v-for="item in 5" :key="item"></div>
</div> </div>
</div> </div>
<div class="build-left"> <!-- 内容 独特的交易经验 -->
<div style="display: flex;margin: 114px auto 66px;"> <div class="beginner_content service-content d-flex" style="justify-content: space-between;align-items: center;">
<img src="" alt="" style="width: 135px;height: 135px;background-color: #000;margin-right: 33px;"> <!-- 文字部分 -->
<div> <div
<div style="font-size: 22px;margin: 30px 0px 10px 0px;">{{ $t("homeNewText.cc6") }}</div> class="beginner_content_r"
<div style="color: #908F94;font-size: 18px;">{{ $t("homeNewText.cc7") }}</div> >
<div class="service-content-text beginner-text" style="margin-bottom: 50px;">
<div class="service-content-text-img text-img">
<div class="circle_bg">
<img src="../../assets/img/features/8.png" alt="" style="width: 24px;height: 24px;margin: 13px;" />
</div>
</div>
<div class="text-box">
<div style="font-size: 28px;color: #e7e7e7;">
{{ $t("homeNewText.dd3") }}
</div>
<div class="service-content-text1-info1 info" style="color: #707275;">
{{ $t("homeNewText.dd4") }}
</div>
</div>
</div> </div>
<div class="service-content-text beginner-text">
<div class="service-content-text-img text-img">
<div class="circle_bg">
<img src="../../assets/img/features/9.png" alt="" style="width: 24px;height: 24px;margin: 13px;" />
</div>
</div>
<div class="text-box">
<div style="font-size: 28px;color: #e7e7e7;">
{{ $t("homeNewText.dd5") }}
</div>
<div class="service-content-text1-info1 info" style="color: #707275;">
{{ $t("homeNewText.dd6") }}
</div>
</div>
</div>
</div> </div>
<div style="display: flex;justify-content: space-between;padding: 0px 23px 0px 10px;">
<div><img src="../../assets/img/features/apple_1.png" alt=""></div> <!-- 图片 -->
<div style="margin-right: 5px;"><img src="../../assets/img/features/android_1.png" alt=""></div> <div class="service-img">
<div><img src="../../assets/img/features/google_1.png" alt=""></div> <img
src="../../assets/img/features/stt.png"
style="width: 326px; height: 424px"
alt=""
/>
</div> </div>
<div style="display: flex;justify-content: space-between;margin-top: 12px;"> </div>
<div>App Store</div>
<div>Android</div> <!-- colto-btn-group -->
<div>Google Play</div> <div v-if="0"
class="colto-btn-group"
style="justify-content: center"
>
<router-link
tag="button"
to="/sign-in"
class="btn btn-success rounded-pill callto-btn container_button"
style="background-color: rgb(84, 164, 80); margin-right: 50px"
>{{ $t("common.login") }}
</router-link>
<router-link
tag="button"
to="/sign-up"
class="btn btn-primary rounded-pill callto-btn container_button1"
style="background-color: rgb(50, 105, 235)"
>{{ $t("common.register") }}
</router-link>
</div>
<div v-if="0" class="colto-btn-group">
<router-link
tag="button"
to="/exchange"
class="btn btn-primary rounded-pill callto-btn"
>{{ $t("common.trading") }}
</router-link>
</div>
</div>
</div>
<!-- 背景径向渐变 -->
<div class="radial_bg">
<!-- 隨處交易 -->
<div style="width: 1200px;font-size: 40px;font-weight: bold;margin: 0px auto;">{{ $t("homeNewText.cc5") }}</div>
<div style="width: 1200px;font-size: 20px;color: #707275;margin: 0px auto;">{{ $t("homeNewText.cc8") }}</div>
<div class="build-box">
<div class="build-bottom d-flex">
<div class="build-left">
<div style="display: flex;margin: 114px auto 66px;">
<img src="" alt="" style="width: 135px;height: 135px;background-color: #000;margin-right: 33px;">
<div>
<div style="font-size: 22px;margin: 30px 0px 10px 0px;">{{ $t("homeNewText.cc6") }}</div>
<div style="color: #908F94;font-size: 18px;">{{ $t("homeNewText.cc7") }}</div>
</div>
</div>
<div style="display: flex;justify-content: space-between;padding: 0px 23px 0px 10px;">
<div><img src="../../assets/img/features/apple_1.png" alt=""></div>
<div style="margin-right: 5px;"><img src="../../assets/img/features/android_1.png" alt=""></div>
<div><img src="../../assets/img/features/google_1.png" alt=""></div>
</div>
<div style="display: flex;justify-content: space-between;margin-top: 12px;">
<div>App Store</div>
<div>Android</div>
<div>Google Play</div>
</div>
</div>
<!-- phone module -->
<div class="build-right">
<img src="../../assets/img/features/styy.png" alt="mobile application" />
</div> </div>
</div> </div>
</div> </div>
<!-- number count -->
<div class="num-info d-flex">
<div class="num-info-count">
<div class="num">Top 10</div>
<div class="title">{{ $t("homeNewText.ee1") }}</div>
</div>
<div class="num-info-count">
<div class="num">5 million+</div>
<div class="title">{{ $t("homeNewText.ee2") }}</div>
</div>
<div class="num-info-count">
<div class="num">{{ '<0.10%' }}</div>
<div class="title">{{ $t("homeNewText.ee3") }}</div>
</div>
<div class="num-info-count">
<div class="num">200+</div>
<div class="title">{{ $t("homeNewText.ee4") }}</div>
</div>
</div>
</div> </div>
<!-- why you choose --> <!-- why you choose -->
<div class="lattest-news-section" v-if="0"> <div class="lattest-news-section" v-if="0">
<div class="section_choose service"> <div class="section_choose service">
@ -625,128 +748,25 @@
</div> </div>
</div> </div>
<!-- beginner's guide -->
<div class="lattest-news-section">
<div class="beginner service">
<!-- 标题 -->
<div class="service-title" v-if="0">
<div
class="text service-title-text1"
style="font-size: 40px; font-weight: 700; line-height: 71px"
>
{{ $t("common.guide") }}
</div>
<div class="dotfive d-flex">
<div class="dotblue" v-for="item in 5" :key="item"></div>
</div>
</div>
<!-- 内容 -->
<div class="beginner_content service-content d-flex">
<!-- 文字部分 -->
<div
class="beginner_content_r"
style="margin-left: 0; margin-right: 23px;padding-top: 40px;"
>
<div class="service-content-text beginner-text">
<div class="service-content-text-img text-img">
<div class="content_img">
<img src="../../assets/img/features/1.png" alt="" />
</div>
</div>
<div class="text-box">
<div class="service-content-text1-title">
{{ $t("homeNewText.dd1") }}
</div>
<div class="service-content-text1-info1 info">
{{ $t("homeNewText.dd2") }}
</div>
</div>
</div>
<div class="service-content-text beginner-text">
<div class="service-content-text-img text-img">
<div class="content_img">
<img src="../../assets/img/features/2.png" alt="" />
</div>
</div>
<div class="text-box">
<div class="service-content-text1-title">
{{ $t("homeNewText.dd3") }}
</div>
<div class="service-content-text1-info1 info">
{{ $t("homeNewText.dd4") }}
</div>
</div>
</div>
<div class="service-content-text beginner-text">
<div class="service-content-text-img text-img">
<div class="content_img">
<img src="../../assets/img/features/3.png" alt="" />
</div>
</div>
<div class="text-box">
<div class="service-content-text1-title">
{{ $t("homeNewText.dd5") }}
</div>
<div class="service-content-text1-info1 info">
{{ $t("homeNewText.dd6") }}
</div>
</div>
</div>
</div>
<!-- 图片 -->
<div class="service-img">
<img
src="../../assets/img/features/stt.png"
style="width: 577px; height: 577px"
alt=""
/>
</div>
</div>
<!-- colto-btn-group -->
<div
class="colto-btn-group"
style="justify-content: center"
v-if="0"
>
<router-link
tag="button"
to="/sign-in"
class="btn btn-success rounded-pill callto-btn container_button"
style="background-color: rgb(84, 164, 80); margin-right: 50px"
>{{ $t("common.login") }}
</router-link>
<router-link
tag="button"
to="/sign-up"
class="btn btn-primary rounded-pill callto-btn container_button1"
style="background-color: rgb(50, 105, 235)"
>{{ $t("common.register") }}
</router-link>
</div>
<div v-if="0" class="colto-btn-group">
<router-link
tag="button"
to="/exchange"
class="btn btn-primary rounded-pill callto-btn"
>{{ $t("common.trading") }}
</router-link>
</div>
</div>
</div>
<!-- 幫助中心 --> <!-- 幫助中心 -->
<div style="font-size: 42px;font-weight: bold;text-align: center;">{{ $t("homeNewText.dd7") }}</div> <div style="font-size: 42px;font-weight: bold;text-align: center;" v-if="0">{{ $t("homeNewText.dd7") }}</div>
<div class="help_area"> <div class="help_area" v-if="0">
<router-link :to="'/notice/'+item.id" v-for="(item, index) in helpList" :key="index" class="help_item"> <router-link :to="'/notice/'+item.id" v-for="(item, index) in helpList" :key="index" class="help_item">
<div>{{ item.title }}</div> <div>{{ item.title }}</div>
<div class="arrow"></div> <div class="arrow"></div>
</router-link> </router-link>
</div> </div>
<div style="padding-top: 30px;">
<div style="font-weight: bold;font-size: 40px;text-align: center;">{{ $t("homeNewText.ee5") }}</div>
<div style="margin: 20px auto 0px;display: flex;justify-content: center;">
<router-link v-if="!isLogin" class="jump_btn" :to="{name:'signUp'}">
{{ $t("homeNewText.aa3") }}
</router-link>
<router-link v-else class="jump_btn" :to="{name:'exchange'}">
{{ $t("homeNewText.aa4") }}
</router-link>
</div>
</div>
</div> </div>
</template> </template>
@ -1123,7 +1143,7 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
#dowebok { #dowebok {
// background: rgb(18, 19, 24) !important; // background: rgb(18, 19, 24) !important;
background-color: #221F28 !important; background-color: #000117 !important;
padding-bottom: 100px; padding-bottom: 100px;
.el_carousel { .el_carousel {
width: 100%; width: 100%;
@ -1150,7 +1170,12 @@ path {
.path_increace { .path_increace {
stroke: #76bf8a; stroke: #76bf8a;
} }
.increaceAj{
color: #4EAA97;
}
.decreaceAj{
color: #CF6A57;
}
// .view-more { // .view-more {
// background: #fd5b2c !important; // background: #fd5b2c !important;
// } // }
@ -1196,43 +1221,31 @@ path {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
background: #0D0D0D;
.left{ .left{
color: #fff; color: #fff;
margin-right: 54px; margin-right: 120px;
.title{ .title{
font-size: 54px;font-weight: bold;padding-left: 36px; font-size: 56px;
position: relative;z-index: 2; width: 560px;
} }
.title::before{
position: absolute;
top: -15px;
left: 0px;
z-index: -1;
content: '';
width: 74px;
height: 74px;
background-color: #633417;
}
.btn{
min-width: 511px;
height: 68px;
background-color: #EABB71;
border-radius: 5px;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
img{
width: 32px;
height: 32px;
margin-right: 10px;
}
}
} }
} }
.jump_btn{
display: inline-block;
min-width: 200px;
height: 60px;
line-height: 60px;
text-align: center;
color: #fff;
background-color: #D1712E;
border-radius: 10px;
font-size: 20px;
padding: 0px 20px;
box-sizing: border-box;
}
.market_table{ .market_table{
width: 1200px; width: 1200px;
font-size: 16px; font-size: 16px;
@ -1438,16 +1451,19 @@ path {
// num count // num count
.num-info { .num-info {
width: 100%; width: 100%;
height: 150px; height: 230px;
justify-content: space-evenly; justify-content: space-evenly;
margin: 60px 0; align-items: center;
margin: 60px 0 0px;
background-color: #0D0D0D;
.num-info-count { .num-info-count {
.num { .num {
font-size: 36px; font-size: 36px;
color: rgba(50, 105, 235, 1); color: white;
font-weight: bold;
} }
.title { .title {
color: white; color: #999;
font-size: 20px; font-size: 20px;
} }
} }
@ -1472,7 +1488,7 @@ path {
} }
} }
.lattest-news-section { .lattest-news-section {
margin: 80px auto; margin: 80px auto 0px;
width: 1200px; width: 1200px;
color: white; color: white;
text-align: center; text-align: center;
@ -1519,7 +1535,7 @@ path {
width: 600px; width: 600px;
.beginner-text { .beginner-text {
display: flex; display: flex;
align-items: center; // align-items: center;
margin-bottom: 20px; margin-bottom: 20px;
.content_img { .content_img {
width: 136px; width: 136px;
@ -1596,6 +1612,16 @@ path {
} }
} }
.radial_bg{
background-image: url("../../assets/img/bg/radial_bg.png");
background-size: contain;
background-repeat: no-repeat;
background-position: 50% 30%;
// background-position: center;
// background-position: center top;
padding: 240px 0px 70px;
margin-top: -80px;
}
//builed //builed
.build-box { .build-box {
width: 100%; width: 100%;
@ -1609,7 +1635,7 @@ path {
} }
.build-left { .build-left {
text-align: left; text-align: left;
margin-left: 49px; margin-right: 45px;
width: 400px; width: 400px;
img{ img{
@ -2112,18 +2138,29 @@ path {
// height: 164px; // height: 164px;
width: 1200px;display: flex;justify-content: space-between; width: 1200px;display: flex;justify-content: space-between;
margin: 50px auto 100px; margin: 50px auto 100px;
flex-wrap: wrap;
.card_item{ .card_item{
width: 378px; width: 366px;
border-radius: 10px; border-radius: 10px;
// height: 100%; // height: 100%;
box-sizing: border-box; box-sizing: border-box;
padding: 36px; padding: 36px;
background-color: #1B1B1B;
margin-bottom: 50px;
img{ img{
width: 24px; width: 220px;
height: 24px; height: 220px;
margin-right: 15px; margin-left: 37px;
margin-bottom: 47px;
} }
} }
} }
.circle_bg{
width: 50px;
height: 50px;
background-image: url('../../assets/img/features/7.png');
background-size: cover;
margin-right: 10px;
}
</style> </style>

36
src/views/signUp/index.vue

@ -52,8 +52,13 @@
<input :type="repwdType" id="repassword" v-model="user.repassword" required :placeholder="$t('login.confirm-password')" class="form-control" /> <input :type="repwdType" id="repassword" v-model="user.repassword" required :placeholder="$t('login.confirm-password')" class="form-control" />
<label @click="showType('repwdType')"></label> <label @click="showType('repwdType')"></label>
</div> </div>
<div class="form-group row password">
<!-- 增加图形验证码 -->
<input type="text" id="gccode" v-model="user.gc_code" required :placeholder="$t('common.GraphicValidation')" class="form-control col-6" />
<img class="col-6" :src="Graph_che" @click="gett_gc_code">
</div>
<div class="form-group row" v-if="0"> <div class="form-group row">
<input type="text" class="form-control" :disabled="$route.query.invite_code?true:false" v-model="user.parentCode" :placeholder="`${$t('login.referrer')}`" /> <input type="text" class="form-control" :disabled="$route.query.invite_code?true:false" v-model="user.parentCode" :placeholder="`${$t('login.referrer')}`" />
<!-- ${$t('login.optional')} --> <!-- ${$t('login.optional')} -->
</div> </div>
@ -200,6 +205,8 @@ export default {
smsCode: null, smsCode: null,
emailCode: null emailCode: null
}, },
Graph_che:'', // gc code image
gc_key:'', // tuxiangyanzheng key
codes: new Array(6) codes: new Array(6)
}; };
@ -255,6 +262,13 @@ export default {
); );
return return
} }
// check gc code has fill
if(this.Graph_che==''){
this.$message({
type:"warning",
message:"input gc code pls.",
})
}
// //
if (!this.isAgree) { if (!this.isAgree) {
// //
@ -357,6 +371,23 @@ export default {
window.frames["my-modal-body"].$captcha.sliderCaptcha("reset"); window.frames["my-modal-body"].$captcha.sliderCaptcha("reset");
}, },
// get gc code from api
gett_gc_code(){
console.log("dddddd")
Member.sendGCode().then( (res) =>{
this.gc_key = res.key
this.Graph_che = res.img
console.log("gc",res);
this.$message({
message: `${type} ${this.$t("login.sendOK")}`,
type: "success",
duration : 2000,
});
}).catch( err =>{
console.log(err)
});
},
autofill($event) { autofill($event) {
let data = $event.clipboardData.getData("text/plain"), let data = $event.clipboardData.getData("text/plain"),
val; val;
@ -541,6 +572,9 @@ export default {
window.md5 = md5; window.md5 = md5;
// //
window.step2Register = this.step2; window.step2Register = this.step2;
// bind get gc code
this.gett_gc_code();
} }
}; };
</script> </script>

81
src/views/wallet/exchange-assets.vue

@ -367,6 +367,19 @@
</div> </div>
<!-- 提币验证码 -->
<div class="form-group mt-2">
<label class="d-flex justify-content-between" for="" style="align-items: center;">
<span>{{$t('login.email-code')}}</span>
<span class="getCodeAA" @click="getEmailCode">
<span v-if="!getEmailCodeLock">{{$t('common.getCode')}}</span>
<span v-else>{{ daojishi }}</span>
</span>
</label>
<div class="input-group input-group-sm">
<input type="text" id="EmailCode" v-model="withdraw.emailcode" :placeholder="$t('common.enterEmailCode')" class="form-control" />
</div>
</div>
</form> </form>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
@ -397,6 +410,7 @@
import InnerTransfer from "../components/inner-transfer.vue"; import InnerTransfer from "../components/inner-transfer.vue";
import Wallet from "@/api/wallet"; import Wallet from "@/api/wallet";
import Profile from "@/api/profile"; import Profile from "@/api/profile";
import Member from "@/api/member";
import ClipboardJS from "clipboard"; import ClipboardJS from "clipboard";
import getCode from "./getCode"; import getCode from "./getCode";
import vueQr from "vue-qr"; import vueQr from "vue-qr";
@ -444,7 +458,8 @@ export default {
addressType: 2, // 1 omni 2 erc20, addressType: 2, // 1 omni 2 erc20,
code_type: 1, code_type: 1,
code: '', code: '',
password:'' password:'',
emailcode: ''
}, },
withdrawFee: { withdrawFee: {
@ -463,7 +478,10 @@ export default {
number:"", number:"",
amount:"", amount:"",
images:"" images:""
} },
getEmailCodeLock: false,
JStime: 0,
tiemr: null,
}; };
}, },
@ -484,6 +502,11 @@ export default {
} }
} }
}, },
computed : {
daojishi(){
return '('+this.JStime + 's' + ')';
}
},
methods: { methods: {
// //
paypalSbumit(){ paypalSbumit(){
@ -656,6 +679,55 @@ export default {
Profile.getUserInfo({}).then(res => { Profile.getUserInfo({}).then(res => {
this.userInfo = res this.userInfo = res
}); });
},
//
getEmailCode(){
if(!this.withdraw.address){
this.$message({
message: this.$t('wallet.enterDrawAddress'),
// message: 'mlkdfdks',
// type: "warn",
duration : 2000,
});
return;
}
if(!this.withdraw.amount){
this.$message({
message: this.$t('wallet.enterDrawNum'),
// type: "warn",
duration : 2000,
});
return;
}
if(!this.withdraw.password){
this.$message({
message: this.$t('common.enterPwd'),
// type: "warn",
duration : 2000,
});
return;
}
if(this.getEmailCodeLock){return};
this.JStime = 300;
this.tiemr = setInterval(()=>{
if(this.JStime===0){
this.getEmailCodeLock = false;
clearInterval(this.tiemr);
return;
}
this.JStime--;
}, 1000)
this.getEmailCodeLock = true;
// let gdata = {bt:this.withdraw.addressType,baddr:this.withdraw.address,bnum:this.withdraw.amount}
let gdata = {bt:this.withdrawCoin,baddr:this.withdraw.address,bnum:this.withdraw.amount}
Member.getWdcode(gdata).then(res => {
// console.log(res, 11111)
this.$message({
message: `${this.$t("login.sendOK")}`,
type: "success",
duration : 2000,
});
});
} }
}, },
@ -767,4 +839,9 @@ created() {
.label{ .label{
font-size: 16px; font-size: 16px;
} }
.getCodeAA{
border: 1px solid #444;
padding: 5px 10px;
border-radius: 30px;
}
</style> </style>

Loading…
Cancel
Save