- 移除秒合约页面及UI - 合约页Tab改为Position Held/Transaction Record - 存款/提款/转账页增加BTC/ETH - 资产页重构(用户信息+盈亏+多语言) - 注册页改版(匹配新设计稿) - 日文全面翻译+首页菜单多语言 - 代理专属注册链接支持(?code=) - 10个locale文件同步更新
754 lines
28 KiB
HTML
754 lines
28 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title></title>
|
||
<!-- Fix for iOS Safari zooming bug -->
|
||
<meta name="viewport"
|
||
content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0" />
|
||
<meta charset="utf-8" />
|
||
|
||
<script src="pako.js"></script>
|
||
<!--封装了一个发布订阅模式-->
|
||
<script src="event.js"></script>
|
||
<!--图表库js-->
|
||
<script src="charting_library/charting_library.min.js"></script>
|
||
|
||
</head>
|
||
<style>
|
||
* {
|
||
padding: 0;
|
||
margin: 0;
|
||
}
|
||
|
||
body {
|
||
background-color: #080A17;
|
||
}
|
||
|
||
/* 这个下面的css是 产品周期按钮的 */
|
||
.header {
|
||
position: relative;
|
||
/* height: 150px; */
|
||
}
|
||
|
||
.top {
|
||
height: 60px;
|
||
background-color: #080A17;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 0 15px;
|
||
}
|
||
|
||
.top .topLeft {
|
||
flex: 1;
|
||
height: 50px;
|
||
padding: 4px 0;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.top .topRight {
|
||
flex: 1;
|
||
height: 24px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-end;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.times {
|
||
/* position: absolute; */
|
||
/* bottom: 0; */
|
||
width: 100%;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.times span {
|
||
width: 16.66%;
|
||
height: 30px;
|
||
line-height: 30px;
|
||
color: #7c8bac;
|
||
font-size: 12px;
|
||
text-align: center;
|
||
}
|
||
|
||
.times span.active {
|
||
position: relative;
|
||
color: #3ECEB2;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.times span.active:before {
|
||
content: " ";
|
||
position: absolute;
|
||
bottom: -2px;
|
||
left: 10%;
|
||
z-index: 1;
|
||
width: 80%;
|
||
height: 3px;
|
||
background-color: #3ECEB2;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.bottomBox {
|
||
width: 100%;
|
||
padding: 5px;
|
||
box-sizing: border-box;
|
||
border-top-left-radius: 5px;
|
||
border-top-right-radius: 5px;
|
||
background-color: #080A17;
|
||
box-shadow: 1px 1px 2px #181b2a;
|
||
}
|
||
|
||
.bottomBox .title {
|
||
/* height: 36px; */
|
||
padding: 0 15px;
|
||
display: flex;
|
||
align-items: flex-start;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.bottomBox .title .list {
|
||
height: 36px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
/* #tv_chart_container:before {
|
||
content: " ";
|
||
position: fixed;
|
||
bottom: 22%;
|
||
left: 5%;
|
||
z-index: 999;
|
||
width: 9vw;
|
||
height: 9vw;
|
||
background-color: #fff;
|
||
} */
|
||
/* 这个下面的css重点关注,和k线图与关 */
|
||
|
||
#tv_chart_container {
|
||
width: 100vw;
|
||
height: 114vw;
|
||
background-color: #080A17;
|
||
}
|
||
|
||
iframe {
|
||
width: 100%;
|
||
height: 100% !important;
|
||
background-color: #080A17;
|
||
}
|
||
|
||
/* 定义模态对话框外面的覆盖层样式 */
|
||
#modal-overlay {
|
||
visibility: hidden;
|
||
position: absolute;
|
||
/* 使用绝对定位或固定定位 */
|
||
left: 0px;
|
||
top: 200px;
|
||
width: 100%;
|
||
height: 100%;
|
||
text-align: center;
|
||
z-index: 1000;
|
||
/* background-color: #333; */
|
||
/* opacity: 0.5; /* 背景半透明 */
|
||
}
|
||
|
||
/* 模态框样式 */
|
||
.modal-data {
|
||
width: 300px;
|
||
margin: 100px auto;
|
||
background-color: #fff;
|
||
border: 1px solid #CCCCCC;
|
||
box-shadow: 1px 1px 1px 1px #DDDDDD;
|
||
padding: 15px;
|
||
text-align: center;
|
||
border-radius: 10px;
|
||
}
|
||
|
||
/* 选择栏 */
|
||
.Selection {
|
||
/* width: 100%; */
|
||
height: 36px;
|
||
/* background-color: #007F0E; */
|
||
display: flex;
|
||
align-items: center;
|
||
padding: 0 30px;
|
||
}
|
||
|
||
.Selection>div {
|
||
flex: 1;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
|
||
.onText {
|
||
font-size: 13px;
|
||
color: #3ECEB2;
|
||
font-weight: bold;
|
||
}
|
||
|
||
.offText {
|
||
font-size: 13px;
|
||
color: #8B99A2;
|
||
font-weight: bold;
|
||
}
|
||
|
||
.heng {
|
||
width: 24px;
|
||
height: 2px;
|
||
margin: 2px auto;
|
||
background: #3ECEB2;
|
||
}
|
||
|
||
.width-42 {
|
||
width: 21px;
|
||
}
|
||
|
||
.height-42 {
|
||
height: 21px;
|
||
}
|
||
|
||
.radiu-50b {
|
||
border-radius: 11px;
|
||
}
|
||
|
||
.font-26 {
|
||
font-size: 13px;
|
||
}
|
||
|
||
.color-17181A {
|
||
color: #17181A;
|
||
}
|
||
|
||
.color-0165EE {
|
||
color: #3ECEB2;
|
||
}
|
||
|
||
.color-8B99A2 {
|
||
color: #8B99A2;
|
||
}
|
||
|
||
.bold-font {
|
||
font-weight: bold;
|
||
}
|
||
|
||
.medium-font {
|
||
font-weight: 500;
|
||
}
|
||
|
||
.margin-l-10 {
|
||
margin-left: 5px;
|
||
}
|
||
|
||
.listBox {
|
||
height: 33px;
|
||
border-bottom: 1px solid #313135;
|
||
padding: 0 15px;
|
||
color: #8B99A2;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.listBox1 {
|
||
min-height: 33px;
|
||
border-bottom: 1px solid #313135;
|
||
padding: 0 15px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.padding-w-30 {
|
||
padding: 5px 15px;
|
||
}
|
||
|
||
a {
|
||
text-decoration: none
|
||
}
|
||
|
||
a:hover {
|
||
text-decoration: none
|
||
}
|
||
|
||
.fotterBox {
|
||
width: 100%;
|
||
box-sizing: border-box;
|
||
height: 70px;
|
||
padding: 0 15px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: #080A17;
|
||
position: fixed;
|
||
bottom: 0px;
|
||
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
|
||
}
|
||
|
||
.loginBtn {
|
||
/* width: 320rpx; */
|
||
flex: 1;
|
||
height: 37px;
|
||
margin: 0 10px;
|
||
box-shadow: 0px 3px 5px rgba(16, 194, 168, 0.18);
|
||
border-radius: 2px;
|
||
color: #FFFFFF;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.bj-04DC9B {
|
||
background-color: #04DC9B;
|
||
}
|
||
|
||
.bj-FF2B41 {
|
||
background-color: #FF2B41;
|
||
}
|
||
|
||
|
||
.chart{
|
||
width: 100vw;
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.tuikuan-showModal{
|
||
width: 100%;
|
||
height: 100%;
|
||
background-color: rgba(8,10,23,1);
|
||
position: absolute;
|
||
top: 0rpx;
|
||
z-index: 100100;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
.donut{
|
||
display: inline-block;
|
||
border: 4px solid rgba(0,0,0,0.1);
|
||
border-left-color: #59a782;
|
||
border-right-color: #CC3131;
|
||
border-radius: 50%;
|
||
width: 30px;
|
||
height: 30px;
|
||
animation: donut-spin 1.0s linear infinite;
|
||
}
|
||
|
||
@keyframes donut-spin {
|
||
0% {
|
||
transform: rotate(0deg);
|
||
}
|
||
|
||
100% {
|
||
transform: rotate(360deg);
|
||
}
|
||
}
|
||
|
||
</style>
|
||
<body>
|
||
<div id="app" class="root">
|
||
<div id="" style="">
|
||
<!-- 顶部信息 -->
|
||
<div class="header" style="margin-top: 55px;">
|
||
<div class="top">
|
||
<div class="topLeft" :style="newData.close > newData.open?'color: #00C481;':'color: #FF2B41;'">
|
||
<div style="font-size: 22px;font-weight: bold;">{{Number(newData.close).toFixed(price_jd)}}
|
||
</div>
|
||
<div style="font-size: 14px;font-weight: bold;white-space: nowrap;">
|
||
≈{{Number(newData.close*exchange_rate).toFixed(price_jd)}} {{name_sx}}
|
||
</div>
|
||
</div>
|
||
<div class="topRight">
|
||
<div style="font-size: 10px;color: #8B99A2;"><span id="highprice">最高价:</span>{{Number(newDay.high).toFixed(price_jd)}}</div>
|
||
<div style="font-size: 10px;color: #8B99A2;"><span id="lowprice">最低价:</span>{{Number(newDay.low).toFixed(price_jd)}}</div>
|
||
</div>
|
||
</div>
|
||
<div class="times" id="interval">
|
||
<span @click="change('1')" :class="tab=='1'?'active':''" data-value="1" id="1minute">1分鐘</span>
|
||
<span @click="change('5')" :class="tab=='5'?'active':''" data-value="5" id="5minute">5分鐘</span>
|
||
<span @click="change('15')" :class="tab=='15'?'active':''" data-value="15"
|
||
id="15minute">15分鐘</span>
|
||
<span @click="change('30')" :class="tab=='30'?'active':''" data-value="30"
|
||
id="30minute">30分鐘</span>
|
||
<span @click="change('60')" :class="tab=='60'?'active':''" data-value="60" id="1hour">60分鐘</span>
|
||
<span @click="change('1D')" :class="tab=='1D'?'active':''" data-value="1D" id="day">日線</span>
|
||
</div>
|
||
</div>
|
||
<!-- K线 -->
|
||
<div class="chart">
|
||
<div v-if="zhezhaoceng==1" class="tuikuan-showModal">
|
||
<div class="donut"></div>
|
||
</div>
|
||
<div id="tv_chart_container"></div>
|
||
</div>
|
||
<!-- 信息 -->
|
||
<div class="Selection">
|
||
<div @click="current=1" class="">
|
||
<span :class="current==1?'onText':'offText'" id="tablist1">委托订单</span>
|
||
<span :style="current==1?'':'visibility: hidden;'" class="heng"></span>
|
||
</div>
|
||
<div @click="current=2" class="">
|
||
<span :class="current==2?'onText':'offText'" id="tablist2">信息</span>
|
||
<span :style="current==2?'':'visibility: hidden;'" class="heng"></span>
|
||
</div>
|
||
</div>
|
||
<!-- 委托订单 -->
|
||
<div v-if="current==1" class="bottomBox">
|
||
<div class="title" style="height: 30px;">
|
||
<span style="font-size: 12px;color: #04DC9B;" id="buyP">买盘</span>
|
||
<span style="font-size: 12px;color: #8B99A2;" id="num">数量</span>
|
||
<p style="width: 150px;text-align: center; font-size: 12px;color: #8B99A2;" id="price">价格</p>
|
||
<span style="font-size: 12px;color: #8B99A2;" id="num1">数量</span>
|
||
<span style="font-size: 12px;color: #FF2B41;" id="sellP">卖盘</span>
|
||
</div>
|
||
<div class="title">
|
||
<div style="flex: 1;margin-right: 5px;">
|
||
<div class="list" v-if="index<20" v-for="(item,index) in depth.bids">
|
||
<span style="font-size: 12px;color: #8B99A2;">{{index+1}}</span>
|
||
<span style="font-size: 12px;color: #8B99A2;">{{numFilter(item[1])}}</span>
|
||
<span style="font-size: 12px;color: #04DC9B;">{{Number(item[0]).toFixed(price_jd)}}</span>
|
||
</div>
|
||
</div>
|
||
<div style="flex: 1;margin-left: 5px;">
|
||
<div class="list" v-if="index<20" v-for="(item,index) in depth.asks">
|
||
<span style="font-size: 12px;color: #FF2B41;">{{Number(item[0]).toFixed(price_jd)}}</span>
|
||
<span style="font-size: 12px;color: #8B99A2;">{{numFilter(item[1])}}</span>
|
||
<span style="font-size: 12px;color: #8B99A2;">{{index+1}}</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- 信息 -->
|
||
<div v-if="current==2" class="bj-white">
|
||
<div class="listBox">
|
||
<div style="display: flex;align-items: center;">
|
||
<img class="width-42 height-42 radiu-50b" :src="coindata.logo_image" mode="">
|
||
<span class="font-26 bold-font margin-l-10">{{coindata.name}}</span>
|
||
</div>
|
||
</div>
|
||
<!-- <div class="listBox">
|
||
<span class="font-26 color-8B99A2 bold-font" id="value">市值</span>
|
||
<span class="font-26 medium-font">{{coindata.count_price}}</span>
|
||
</div> -->
|
||
<div class="listBox">
|
||
<span class="font-26 color-8B99A2 bold-font" id="number">流通数量</span>
|
||
<span class="font-26 medium-font">{{coindata.liutong_num}}</span>
|
||
</div>
|
||
<div class="listBox">
|
||
<span class="font-26 color-8B99A2 bold-font" id="supply">最大供给量</span>
|
||
<span class="font-26 medium-font">{{coindata.gongji_num}}</span>
|
||
</div>
|
||
<div class="listBox">
|
||
<span class="font-26 color-8B99A2 bold-font" id="allNum">总量</span>
|
||
<span class="font-26 medium-font">{{coindata.count_num}}</span>
|
||
</div>
|
||
<div class="listBox">
|
||
<span class="font-26 color-8B99A2 bold-font" id="issuingDate">发行日期</span>
|
||
<span class="font-26 medium-font">{{coindata.faxin_time}}</span>
|
||
</div>
|
||
<div class="listBox">
|
||
<span class="font-26 color-8B99A2 bold-font" id="issuePrice">发行价格</span>
|
||
<span class="font-26 medium-font">{{coindata.faxin_price}}</span>
|
||
</div>
|
||
<a :href="coindata.qukuai" class="listBox1">
|
||
<div style="width: 70px;height: 33px;line-height: 33px;" class="font-26 color-8B99A2 bold-font" id="qukuai">区块浏览器</div>
|
||
<div style="width:240px;word-wrap:break-word;padding: 4px 0px;text-align: right;" class="font-26 color-0165EE medium-font">{{coindata.qukuai}}</div>
|
||
</a>
|
||
<div class="listBox">
|
||
<span class="font-26 color-8B99A2 bold-font" id="jieshao">介绍</span>
|
||
</div>
|
||
<div class="padding-w-30 font-26 color-8B99A2">
|
||
{{coindata.desc}}
|
||
</div>
|
||
</div>
|
||
<!-- 空盒子 -->
|
||
<div style="height: 100px;"></div>
|
||
<!-- 底部 -->
|
||
<div class="fotterBox">
|
||
<a class="loginBtn bj-04DC9B" target="_parent" :href="buyurl">
|
||
<span id="buyIn">买入</span>
|
||
</a>
|
||
<a class="loginBtn bj-FF2B41" target="_parent" :href="sellurl">
|
||
<span id="sellout">卖出</span>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!--页面总统js 初始化图表库 绑定点击事件等-->
|
||
<!-- <script src="./index.js"></script> -->
|
||
<!-- 拦截点击logo跳转 -->
|
||
<script type="text/javascript">
|
||
function plusReady() {
|
||
var ws = plus.webview.currentWebview();
|
||
ws.overrideUrlLoading({
|
||
mode: 'reject'
|
||
}, function(e) {
|
||
console.log('拦截跳转 url: ' + e.url);
|
||
})
|
||
show1()
|
||
}
|
||
document.addEventListener('plusready', plusReady, false);
|
||
|
||
function show1() {
|
||
var lang = localStorage.getItem("Language");
|
||
if (localStorage.getItem("token")) {
|
||
|
||
} else {
|
||
lang = plus.storage.getItem("Language")
|
||
}
|
||
console.log(lang);
|
||
if (lang == "zh-cn") {
|
||
document.getElementById('1minute').innerText = '1分鐘';
|
||
document.getElementById('5minute').innerText = '5分鐘';
|
||
document.getElementById('15minute').innerText = '15分鐘';
|
||
document.getElementById('30minute').innerText = '30分鐘';
|
||
document.getElementById('1hour').innerText = '60分鐘';
|
||
document.getElementById('day').innerText = '日線';
|
||
document.getElementById('highprice').innerText = '最高價';
|
||
document.getElementById('lowprice').innerText = '最低價';
|
||
document.getElementById('tablist1').innerText = '委託訂單';
|
||
document.getElementById('tablist2').innerText = '信息';
|
||
document.getElementById('buyP').innerText = '買盤';
|
||
document.getElementById('num').innerText = '数量';
|
||
document.getElementById('num1').innerText = '數量';
|
||
document.getElementById('price').innerText = '價格';
|
||
document.getElementById('sellP').innerText = '賣盤';
|
||
// document.getElementById('value').innerText = '市值';
|
||
document.getElementById('number').innerText = '流通數量';
|
||
document.getElementById('supply').innerText = '最大供給量';
|
||
document.getElementById('allNum').innerText = '總量';
|
||
document.getElementById('issuingDate').innerText = '發行日期';
|
||
document.getElementById('issuePrice').innerText = '發行價格';
|
||
document.getElementById('qukuai').innerText = '區塊鏈瀏覽器';
|
||
document.getElementById('jieshao').innerText = '介紹';
|
||
document.getElementById('buyIn').innerText = '買入';
|
||
document.getElementById('sellout').innerText = '賣出';
|
||
} else if (lang == 'mn') {
|
||
document.getElementById('1minute').innerText = '1минут';
|
||
document.getElementById('5minute').innerText = '5минут';
|
||
document.getElementById('15minute').innerText = '15минут';
|
||
document.getElementById('30minute').innerText = '30минут';
|
||
document.getElementById('1hour').innerText = '1Цаг';
|
||
document.getElementById('day').innerText = 'тэнгэр';
|
||
document.getElementById('highprice').innerText = 'Хамгийн өндөр';
|
||
document.getElementById('lowprice').innerText = 'Хамгийн бага';
|
||
document.getElementById('tablist1').innerText = 'Захиалга';
|
||
document.getElementById('tablist2').innerText = 'Дэлгэрэнгүй';
|
||
document.getElementById('buyP').innerText = 'Худалдан авах';
|
||
document.getElementById('num').innerText = 'Дүн';
|
||
document.getElementById('num1').innerText = 'Дүн';
|
||
document.getElementById('price').innerText = 'Үнэ';
|
||
document.getElementById('sellP').innerText = 'Зарна';
|
||
// document.getElementById('value').innerText = 'Үнэ цэнэ';
|
||
document.getElementById('number').innerText = 'Нийт эзлэхүүн';
|
||
document.getElementById('supply').innerText = 'Макс Эзлэхүүн';
|
||
document.getElementById('allNum').innerText = 'Нийт';
|
||
document.getElementById('issuingDate').innerText = 'Огноо';
|
||
document.getElementById('issuePrice').innerText = 'Үнэ';
|
||
document.getElementById('qukuai').innerText = 'Судлаач';
|
||
document.getElementById('jieshao').innerText = 'Танилцуулга';
|
||
document.getElementById('buyIn').innerText = 'Худалдан авах';
|
||
document.getElementById('sellout').innerText = 'Зарна';
|
||
} else if (lang == 'ms') {
|
||
document.getElementById('1minute').innerText = '1minit';
|
||
document.getElementById('5minute').innerText = '5minit';
|
||
document.getElementById('15minute').innerText = '15minit';
|
||
document.getElementById('30minute').innerText = '30minit';
|
||
document.getElementById('1hour').innerText = '1Jam';
|
||
document.getElementById('day').innerText = 'langit';
|
||
document.getElementById('highprice').innerText = 'Tertinggi';
|
||
document.getElementById('lowprice').innerText = 'Terendah';
|
||
document.getElementById('tablist1').innerText = 'Pesanan';
|
||
document.getElementById('tablist2').innerText = 'Perincian';
|
||
document.getElementById('buyP').innerText = 'Beli';
|
||
document.getElementById('num').innerText = 'Jumlah';
|
||
document.getElementById('num1').innerText = 'Jumlah';
|
||
document.getElementById('price').innerText = 'harga';
|
||
document.getElementById('sellP').innerText = 'jual';
|
||
// document.getElementById('value').innerText = 'Nilai';
|
||
document.getElementById('number').innerText = 'Jumlah Isipadu';
|
||
document.getElementById('supply').innerText = 'Maks Kelantangan';
|
||
document.getElementById('allNum').innerText = 'Tota';
|
||
document.getElementById('issuingDate').innerText = 'Tarikh';
|
||
document.getElementById('issuePrice').innerText = 'harga';
|
||
document.getElementById('qukuai').innerText = 'Penjelajah';
|
||
document.getElementById('jieshao').innerText = 'pengenalan';
|
||
document.getElementById('buyIn').innerText = 'Beli';
|
||
document.getElementById('sellout').innerText = 'jual';
|
||
} else if (lang == "kr") {
|
||
document.getElementById('1minute').innerText = '1 분.';
|
||
document.getElementById('5minute').innerText = '5 분.';
|
||
document.getElementById('15minute').innerText = '15 분.';
|
||
document.getElementById('30minute').innerText = '30 분.';
|
||
document.getElementById('1hour').innerText = '1 시.';
|
||
document.getElementById('day').innerText = '일 선';
|
||
document.getElementById('highprice').innerText = '최고가';
|
||
document.getElementById('lowprice').innerText = '최저 가격';
|
||
document.getElementById('tablist1').innerText = '위탁 주문';
|
||
document.getElementById('tablist2').innerText = '정보';
|
||
document.getElementById('buyP').innerText = '구입';
|
||
document.getElementById('num').innerText = '수량';
|
||
document.getElementById('num1').innerText = '수량';
|
||
document.getElementById('price').innerText = '가격';
|
||
document.getElementById('sellP').innerText = '매도';
|
||
// document.getElementById('value').innerText = '시장 가치';
|
||
document.getElementById('number').innerText = '유통량';
|
||
document.getElementById('supply').innerText = '최대 공급';
|
||
document.getElementById('allNum').innerText = '총';
|
||
document.getElementById('issuingDate').innerText = '발행일';
|
||
document.getElementById('issuePrice').innerText = '발행가격';
|
||
document.getElementById('qukuai').innerText = '블록체인 브라우저';
|
||
document.getElementById('jieshao').innerText = '소개하다';
|
||
document.getElementById('buyIn').innerText = '구매';
|
||
document.getElementById('sellout').innerText = '팔다';
|
||
} else if (lang == "fre") {
|
||
document.getElementById('1minute').innerText = '1 point';
|
||
document.getElementById('5minute').innerText = '5 points';
|
||
document.getElementById('15minute').innerText = '15 points';
|
||
document.getElementById('30minute').innerText = '30 points';
|
||
document.getElementById('1hour').innerText = '1 Heure';
|
||
document.getElementById('day').innerText = 'ciel';
|
||
document.getElementById('highprice').innerText = 'Le prix le plus élevé';
|
||
document.getElementById('lowprice').innerText = 'Prix le plus bas';
|
||
document.getElementById('tablist1').innerText = 'Commission';
|
||
document.getElementById('tablist2').innerText = 'informations';
|
||
document.getElementById('buyP').innerText = 'Acheter';
|
||
document.getElementById('num').innerText = 'quantit';
|
||
document.getElementById('num1').innerText = 'quantit';
|
||
document.getElementById('price').innerText = 'le prix';
|
||
document.getElementById('sellP').innerText = 'Vendre';
|
||
// document.getElementById('value').innerText = 'Valeur marchande';
|
||
document.getElementById('number').innerText = 'Quantité de circulation';
|
||
document.getElementById('supply').innerText = 'Approvisionnement maximal';
|
||
document.getElementById('allNum').innerText = 'Le total';
|
||
document.getElementById('issuingDate').innerText = "date d'émission";
|
||
document.getElementById('issuePrice').innerText = "Prix d'émission";
|
||
document.getElementById('qukuai').innerText = 'Navigateur de blockchain';
|
||
document.getElementById('jieshao').innerText = 'présenter';
|
||
document.getElementById('buyIn').innerText = 'Acheter';
|
||
document.getElementById('sellout').innerText = 'Vendre';
|
||
} else if (lang == "ger") {
|
||
document.getElementById('1minute').innerText = '1 Punkt';
|
||
document.getElementById('5minute').innerText = '5 Punkte';
|
||
document.getElementById('15minute').innerText = '15 Punkte';
|
||
document.getElementById('30minute').innerText = '30 Punkte';
|
||
document.getElementById('1hour').innerText = '1 Stunde';
|
||
document.getElementById('day').innerText = 'Himmel';
|
||
document.getElementById('highprice').innerText = 'Höchster Preis';
|
||
document.getElementById('lowprice').innerText = 'Geringster Preis';
|
||
document.getElementById('tablist1').innerText = 'Konsignationsauftrag';
|
||
document.getElementById('tablist2').innerText = 'Information';
|
||
document.getElementById('buyP').innerText = 'Besorgen';
|
||
document.getElementById('num').innerText = 'Anzahl';
|
||
document.getElementById('num1').innerText = 'Anzahl';
|
||
document.getElementById('price').innerText = 'Preis';
|
||
document.getElementById('sellP').innerText = 'verkaufen';
|
||
// document.getElementById('value').innerText = 'Marktwert';
|
||
document.getElementById('number').innerText = 'Umlaufmenge';
|
||
document.getElementById('supply').innerText = 'Maximale Versorgung';
|
||
document.getElementById('allNum').innerText = 'Gesamt';
|
||
document.getElementById('issuingDate').innerText = 'Ausgabetag';
|
||
document.getElementById('issuePrice').innerText = 'Ausgabepreis';
|
||
document.getElementById('qukuai').innerText = 'Blockchain-Browser';
|
||
document.getElementById('jieshao').innerText = 'vorstellen';
|
||
document.getElementById('buyIn').innerText = 'Kaufen Sie ein';
|
||
document.getElementById('sellout').innerText = 'Verkaufen';
|
||
} else if (lang == "ily") {
|
||
document.getElementById('1minute').innerText = '1 punto';
|
||
document.getElementById('5minute').innerText = '5 punti';
|
||
document.getElementById('15minute').innerText = '15 punti';
|
||
document.getElementById('30minute').innerText = '30 punti';
|
||
document.getElementById('1hour').innerText = '1 Ora';
|
||
document.getElementById('day').innerText = 'Linea giornaliera';
|
||
document.getElementById('highprice').innerText = 'alto';
|
||
document.getElementById('lowprice').innerText = 'basso';
|
||
document.getElementById('tablist1').innerText = 'Ordine';
|
||
document.getElementById('tablist2').innerText = 'informazione';
|
||
document.getElementById('buyP').innerText = 'Acquistare';
|
||
document.getElementById('num').innerText = 'quantità';
|
||
document.getElementById('num1').innerText = 'quantità';
|
||
document.getElementById('price').innerText = 'prezzo';
|
||
document.getElementById('sellP').innerText = 'Vendi';
|
||
// document.getElementById('value').innerText = 'Valore di mercato';
|
||
document.getElementById('number').innerText = 'Quantità di circolazione';
|
||
document.getElementById('supply').innerText = 'Fornitura massima';
|
||
document.getElementById('allNum').innerText = 'Totale';
|
||
document.getElementById('issuingDate').innerText = 'data di emissione';
|
||
document.getElementById('issuePrice').innerText = 'Prezzo di emissione';
|
||
document.getElementById('qukuai').innerText = 'Browser';
|
||
document.getElementById('jieshao').innerText = 'introdurre';
|
||
document.getElementById('buyIn').innerText = 'Consenso';
|
||
document.getElementById('sellout').innerText = 'Vendere';
|
||
} else if (lang == "jp") {
|
||
document.getElementById('1minute').innerText = '1分';
|
||
document.getElementById('5minute').innerText = '5分';
|
||
document.getElementById('15minute').innerText = '15分';
|
||
document.getElementById('30minute').innerText = '30分';
|
||
document.getElementById('1hour').innerText = '1時';
|
||
document.getElementById('day').innerText = '日線';
|
||
document.getElementById('highprice').innerText = '最高価格';
|
||
document.getElementById('lowprice').innerText = '最低価格';
|
||
document.getElementById('tablist1').innerText = '委託注文';
|
||
document.getElementById('tablist2').innerText = '情報';
|
||
document.getElementById('buyP').innerText = '買う';
|
||
document.getElementById('num').innerText = '量';
|
||
document.getElementById('num1').innerText = '量';
|
||
document.getElementById('price').innerText = '価格';
|
||
document.getElementById('sellP').innerText = '売る';
|
||
// document.getElementById('value').innerText = '市場価格';
|
||
document.getElementById('number').innerText = '循環量';
|
||
document.getElementById('supply').innerText = '最大供給量';
|
||
document.getElementById('allNum').innerText = '合計';
|
||
document.getElementById('issuingDate').innerText = '発行日';
|
||
document.getElementById('issuePrice').innerText = '発行価格';
|
||
document.getElementById('qukuai').innerText = 'ブロックチェーンブラウザ';
|
||
document.getElementById('jieshao').innerText = '導入';
|
||
document.getElementById('buyIn').innerText = 'バイイン';
|
||
document.getElementById('sellout').innerText = '売る';
|
||
} else {
|
||
document.getElementById('1minute').innerText = '1Min';
|
||
document.getElementById('5minute').innerText = '5Min';
|
||
document.getElementById('15minute').innerText = '15Min';
|
||
document.getElementById('30minute').innerText = '30Min';
|
||
document.getElementById('1hour').innerText = '1Hour';
|
||
document.getElementById('day').innerText = 'Day';
|
||
document.getElementById('highprice').innerText = 'Highest';
|
||
document.getElementById('lowprice').innerText = 'Lowest';
|
||
document.getElementById('tablist1').innerText = 'Order';
|
||
document.getElementById('tablist2').innerText = 'Detail';
|
||
document.getElementById('buyP').innerText = 'Buy';
|
||
document.getElementById('num').innerText = 'Amount';
|
||
document.getElementById('num1').innerText = 'Amount';
|
||
document.getElementById('price').innerText = 'Price';
|
||
document.getElementById('sellP').innerText = 'Sell';
|
||
// document.getElementById('value').innerText = 'Value';
|
||
document.getElementById('number').innerText = 'Total Volume';
|
||
document.getElementById('supply').innerText = 'Max Volume';
|
||
document.getElementById('allNum').innerText = 'Tota';
|
||
document.getElementById('issuingDate').innerText = 'Date';
|
||
document.getElementById('issuePrice').innerText = 'Price';
|
||
document.getElementById('qukuai').innerText = 'Explorer';
|
||
document.getElementById('jieshao').innerText = 'Intro';
|
||
document.getElementById('buyIn').innerText = 'Buy';
|
||
document.getElementById('sellout').innerText = 'Sell';
|
||
}
|
||
}
|
||
show1()
|
||
</script>
|
||
<script type="text/javascript" src="qs.js"></script>
|
||
<script type="text/javascript" src="vue.js"></script>
|
||
<script type="text/javascript" src="axios.js"></script>
|
||
<script type="text/javascript" src="kline_H5.js"></script>
|
||
<!--websocket-->
|
||
<script src="websocket.js"></script>
|
||
<!--图表数据获取-->
|
||
<script src="datafeed.js"></script>
|
||
<!--图表配置-->
|
||
<script src="chartConfig.js"></script>
|
||
</body>
|
||
</html>
|