<template>
|
<div class="position">
|
<div class="position-padding" v-for="item in listData" :key="item.order_no">
|
<div class="position-tag ">
|
<div class="position-tag-style" :class="item.direction === 'buy' ? 'green' : 'red'">
|
{{ item.direction === 'buy' ? $t('开多') : $t('开空') }}</div>
|
<div class="position-tag-title textColor">{{ item.name }} {{ $t('交割') }}</div>
|
<div class="position-tag-title2">{{ $t('全仓') }}</div>
|
<img class="position-tag-img" src="../../assets/image/deliveryContract/Group1042.png" />
|
</div>
|
<div class="position-div1">
|
<span class="position-text1">{{ $t('数量') }}</span>
|
<span class="position-text2 textColor">{{ item.volume }}</span>
|
</div>
|
<div class="position-div1">
|
<span class="position-text1">{{ $t('方向') }}</span>
|
<span class="position-text2" :class="item.direction === 'buy' ? 'color-green' : 'color-red'">
|
{{ item.direction === 'buy' ? $t('开多') : $t('开空') }}</span>
|
</div>
|
<div class="position-div1">
|
<span class="position-text1">{{ $t('交割时间') }}</span>
|
<span class="position-text2 textColor">{{ item.time_num + item.time_unit }}</span>
|
</div>
|
<div class="position-div1">
|
<span class="position-text1">{{ $t('购买价') }}(USDT)</span>
|
<span class="position-text2 textColor">{{ item.open_price }}</span>
|
</div>
|
<div class="position-div1">
|
<span class="position-text1">{{ $t('结算价') }}(USDT)</span>
|
<span class="position-text2 textColor">{{ item.close_price }}</span>
|
</div>
|
<div class="position-div1">
|
<span class="position-text1">{{ $t('盈亏') }}</span>
|
<span class="position-text2" :class="item.profit > 0 ? 'color-green' : 'color-red'">
|
{{ item.profit > 0 ? '+' + item.profit : item.profit }}
|
</span>
|
</div>
|
<div class="position-div1">
|
<span class="position-text1">{{ $t('到期时间') }}</span>
|
<span class="position-text2 textColor">{{ item.close_time }}</span>
|
</div>
|
<div class="position-div1">
|
<span class="position-text1">{{ $t('操作') }}</span>
|
<span class="position-text2 colorMain" @click="onDetail(item)">{{ $t('详情') }}</span>
|
</div>
|
<div style="margin-top: 33px;width: 100%;height: 1px;float: left;" class="bgDark"></div>
|
</div>
|
<div class="text-grey text-center py-300" v-if="!listData.length && $route.name == 'perpetualContract'">{{
|
$t('您目前没有持仓') }}</div>
|
<van-popup v-model="show">
|
<popup-delivery showBtns :detailData="detailData" :key="detailData.order_no" @close="show = false"
|
:disabled="true" />
|
</van-popup>
|
</div>
|
</template>
|
<script>
|
import { Tab, Tabs, Popup } from 'vant';
|
import PopupDelivery from '@/components/popup-delivery'
|
export default {
|
data() {
|
return {
|
active: 2,
|
show: false,
|
detailData: {}
|
}
|
},
|
props: {
|
listData: {
|
type: Array,
|
default() {
|
return []
|
}
|
}
|
},
|
components: {
|
[Tab.name]: Tab,
|
[Tabs.name]: Tabs,
|
[Popup.name]: Popup,
|
PopupDelivery
|
},
|
methods: {
|
onDetail(item) { // 详细界面
|
this.show = true
|
this.detailData = item
|
}
|
}
|
}
|
</script>
|
<style lang="scss" scoped>
|
.position {
|
width: 100%;
|
overflow: auto;
|
|
.position-tab-flex {
|
width: 100%;
|
display: flex;
|
|
.position-tab {
|
flex: 1;
|
}
|
|
.position-tab-icon {
|
width: 38px;
|
height: 38px;
|
margin-right: 30px;
|
margin-top: 22px;
|
}
|
}
|
|
.position-padding {
|
//border-bottom: 1px solid #F2F4F9;
|
padding: 42px 0 0 0;
|
box-sizing: border-box;
|
width: 100%;
|
overflow: auto;
|
|
.position-tag {
|
display: flex;
|
align-items: center;
|
|
.position-tag-style {
|
padding: 11px 28px;
|
margin-right: 22px;
|
font-style: normal;
|
font-weight: 400;
|
font-size: 26.4981px;
|
color: #FFFFFF;
|
}
|
|
.position-tag-title {
|
font-style: normal;
|
font-weight: 600;
|
font-size: 30.9145px;
|
margin-right: 13px;
|
}
|
|
.position-tag-title2 {
|
font-style: normal;
|
font-weight: 400;
|
font-size: 30.9145px;
|
color: #848E9C;
|
}
|
|
.position-tag-img {
|
margin-left: 11px;
|
width: 40px;
|
height: 31px;
|
}
|
}
|
|
.red {
|
background: #F6465D;
|
border-radius: 6.6266px;
|
}
|
|
.green {
|
background: #5EBA89;
|
border-radius: 6.62453px;
|
}
|
|
.position-div1 {
|
margin-top: 33px;
|
width: 100%;
|
float: left;
|
|
.position-text1 {
|
float: left;
|
font-style: normal;
|
font-weight: 400;
|
font-size: 30px;
|
color: #848E9C;
|
}
|
|
.position-text2 {
|
float: right;
|
font-style: normal;
|
font-weight: 400;
|
font-size: 30px;
|
}
|
|
.position-text3 {
|
font-style: normal;
|
font-weight: 400;
|
font-size: 30px;
|
}
|
}
|
}
|
|
.color-red {
|
color: #F6465D !important;
|
}
|
|
.color-green {
|
color: #5EBA89 !important;
|
}
|
|
.color-blue {
|
color: #1D91FF !important;
|
}
|
}
|
|
.textColor {
|
@include themify() {
|
color: themed("text_color");
|
}
|
}
|
|
.border-b-color {
|
@include themify() {
|
border-bottom: 1px solid themed("border_color");
|
}
|
}
|
|
.bgDark {
|
@include themify() {
|
background: themed("border_color");
|
}
|
}
|
</style>
|