You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

299 lines
9.0 KiB

<template>
<div class="markets-pair-list handicap bg-plain">
<div class="nav nav-pills">
<div class="nav-item">
<a class="nav-link" :class="{ active: tab == 1 }" @click="tab = 1">{{
$t("contract.f7")
}}</a>
</div>
<div class="nav-item">
<a class="nav-link" :class="{ active: tab == 2 }" @click="tab = 2">{{
$t("contract.f8")
}}</a>
</div>
</div>
<div>
<!-- 盘口 -->
<div class="handicap-body px-3" v-if="tab == 1">
<div class="d-flex justify-content-between py-2" v-if="false">
<div class="d-flex">
<div class="border border-primary rounded px-1 mr-2">
{{ $t("contract.f9") }}
</div>
<div class="border border-success rounded px-1 mr-2">
{{ $t("contract.g0") }}
</div>
<div class="border border-danger rounded px-1">
{{ $t("contract.g1") }}
</div>
</div>
<div class="rounded px-1 border">
0.8
<i class="el-icon-arrow-down"></i>
</div>
</div>
<div class="label-group d-flex text-secondary fn-12 py-2 justify-content-between">
<div class="w-8/24">
{{ $t("contract.d8") }}
</div>
<div class="w-7/24">
{{ $t("contract.e1") }}
</div>
<div class="w-7/24 text-right">
{{ $t("contract.g2") }}
<!-- ({{ $t("contract.e2") }}) -->
</div>
</div>
<div class="sell">
<template v-for="(item, idx) in sellListShow">
<div
class="item pointer"
:key="idx"
@click="$emit('selectprice', item.price)"
>
<div class="d-flex justify-content-between">
<div class="w-8/24 decreace">{{ item.price}}</div>
<div class="w-7/24">{{ omitTo(item.amount, 2) }}</div>
<div class="w-7/24 text-right">{{ item.total }}</div>
</div>
<div
class="pgs"
:style="{ width: getValue(item.amount) + '%' }"
></div>
</div>
</template>
</div>
<div
class="current-nav d-flex border-top border-bottom align-items-center"
>
<div class="w-10/24">
<div class="name text-secondary fn-12">{{ $t("contract.g3") }}</div>
<div class="num fn-20 increace">
{{ newPriceObj.price }}
</div>
</div>
<div class="w-14/24 text-right">
<!-- <button class="btn btn-sm btn-outline-primary fn-12">更多</button> -->
</div>
</div>
<div class="buy">
<template v-for="(item, idx) in buyListShow">
<div
class="item pointer"
:key="idx"
@click="$emit('selectprice', item.price)"
>
<div class="d-flex justify-content-between">
<div class="w-8/24 increace">{{ item.price }}</div>
<div class="w-7/24">{{ omitTo(item.amount, 2) }}</div>
<div class="w-7/24 text-right">{{ item.total }}</div>
</div>
<div
class="pgs"
:style="{ width: getValue(item.amount) + '%' }"
></div>
</div>
</template>
</div>
</div>
<!-- 实时成交 -->
<div class="real-time p-3" v-if="tab == 2">
<div class="d-flex text-secondary fn-12 justify-content-between">
<div class="w-10/24">
{{ $t("contract.b1") }}
</div>
<div class="w-7/24">{{ $t("contract.d8") }}(USDT)</div>
<div class="w-7/24 text-right">
{{ $t("contract.e1") }}({{ $t("contract.e2") }})
</div>
</div>
<div class="d-flex fn-12 justify-content-between" v-for="(item, idx) in tradeList.slice(0,30)" :key="idx">
<div class="w-10/24">
{{ parseTime(item.ts, false, "{h}:{i}:{s}") }}
</div>
<div class="w-7/24 increace">
{{ item.price }}
</div>
<div class="w-7/24 text-right">
{{ omitTo(item.amount, 2) }}
</div>
</div>
</div>
</div>
</div>
</template>
<script>
import Contract from "@/api/contract.js";
import date from "@/utils/class/date.js";
import math from "@/utils/class/math.js";
import Socket from "@/api/server/Socket.js";
import bus from "@/components/bus.js";
export default {
data() {
return {
tab: 1,
sellList: [],
buyList: [],
tradeList: [],
newPriceObj: {},
};
},
props: {
symbol: {
default: "",
type: String,
required: false
},
wsUrl: {
default: "",
type: String,
required: true
},
ws: {}
},
watch: {
symbol(n, o) {
this.getMarketInfo();
this.linkSocket();
if (o) {
this.unLink(o);
}
}
},
computed: {
msg() {
return {
buy: `swapBuyList_${this.symbol}`,
sell: `swapSellList_${this.symbol}`,
trade: `swapTradeList_${this.symbol}`
};
},
sellListShow() {
let list = this.sellList.splice(0, 12);
let total = 0;
list.forEach(item => {
// total = total -0;
// console.log(Number(total));
item.total = total += Number(item.amount);
item.total = item.total.toFixed(3);
// item.total =item.total-0;
});
return list.reverse();
},
buyListShow() {
let list = this.buyList.splice(0, 12);
let total = 0;
list.forEach(item => {
item.total = total += Number(item.amount);
item.total = item.total.toFixed(3);
});
return list;
}
},
created() {
if (this.symbol) {
this.getMarketInfo();
this.linkSocket();
}
bus.$on('collapse', msg => {
this.newPriceObj.price =this.symbol=='BTC'? (msg.close).toFixed(1):(msg.close).toFixed(3);
this.$emit("input", this.newPriceObj);
localStorage.setItem("price",this.newPriceObj.price)
});
},
// 获取盘口
methods: {
parseTime: date.parseTime,
omitTo: math.omitTo,
getMarketInfo() {
let data = {
symbol: this.symbol
};
Contract.getMarketInfo(data).then(res => {
this.sellList = res.swapSellList;
this.buyList = res.swapBuyList;
this.tradeList = res.swapTradeList;
this.newPriceObj = this.tradeList[0];
this.$emit("input", this.newPriceObj);
localStorage.setItem("price",this.newPriceObj.price)
});
},
// 计算深度
getValue(amount) {
const arr = this.buyListShow
.concat(this.sellListShow)
.map(item => item.amount);
let max = Math.max(...arr);
return math.division(amount, max, 2) * 100;
},
// 连接socket
linkSocket() {
if (this.ws.socket.readyState == 1) {
this.ws.send({
cmd: "sub",
msg: this.msg.buy
});
this.ws.send({
cmd: "sub",
msg: this.msg.sell
});
this.ws.send({
cmd: "sub",
msg: this.msg.trade
});
} else {
this.ws.on("open", () => {
this.ws.send({
cmd: "sub",
msg: this.msg.buy
});
this.ws.send({
cmd: "sub",
msg: this.msg.sell
});
this.ws.send({
cmd: "sub",
msg: this.msg.trade
});
});
}
this.ws.on("message", res => {
let { data, msg, code, sub, type, status, cmd } = res;
if (sub == this.msg.buy) {
this.buyList = data;
} else if (sub == this.msg.sell) {
this.sellList = data;
} else if (sub == this.msg.trade) {
this.tradeList.unshift(data);
this.tradeList.pop();
// this.newPriceObj = data;
// this.$emit("input", this.newPriceObj);
} else if (type == "ping" ||cmd == "ping") {
this.ws.send({
cmd: "pong"
});
}
});
},
// 取消订阅
unLink(symbol) {
// 取消买线
this.ws.send({
cmd: "unsub",
msg: `swapBuyList_${symbol}`
});
// 取消卖线
this.ws.send({
cmd: "unsub",
msg: `swapSellList_${symbol}`
});
// 取消成交
this.ws.send({
cmd: "unsub",
msg: `swapTradeList_${symbol}`
});
}
}
};
</script>