lxf
2025-07-04 5ef5f50d09b49795c4cc9ca017294cbb74083cae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<template>
    <!-- 合约订单详情 -->
    <div class="orderDetail">
        <assets-head :title="$t('订单详情')" />
        <div class="pl-32 pr-32 pt-54 pb-58 textColor">
            <div class="text-center">{{ $t('盈亏金额') }}</div>
            <div class="text-center mt-44 font-56" :class="{
                'text-green': detail.profit / 1 > 0,
                'text-red': detail.profit / 1 < 0,
            }">{{ detail.profit / 1 > 0 ? '+' + detail.profit : detail.profit }} ({{ detail.change_ratio }} %)</div>
            <div class="flex justify-between pb-68 mt-90">
                <div class="text-grey">{{ $t('操作') }}</div>
                <div class="font-600"> {{ detail.direction == 'buy' ? $t('开多') : $t('开空') }}&nbsp;{{
                    detail.name ? detail.name : '--'
                }}</div>
            </div>
            <div class="flex justify-between pb-68">
                <div class="text-grey">{{ $t('状态') }}</div>
                <div class="textColor">{{ detail.state ? handleText(detail.state) : '--' }}</div>
            </div>
            <div class="flex justify-between pb-68">
                <div class="text-grey">{{ $t('开仓金额') }}</div>
                <div class="textColor">{{ detail.amount_open }}</div>
            </div>
            <div class="flex justify-between pb-68">
                <div class="text-grey">{{ $t('可平金额') }}</div>
                <div class="textColor">{{ detail.amount_open }}</div>
            </div>
            <div class="flex justify-between pb-68">
                <div class="text-grey">{{ $t('保证金') }}</div>
                <div class="textColor">{{ detail.deposit }}</div>
            </div>
            <div class="flex justify-between pb-68">
                <div class="text-grey">{{ $t('手续费') }}</div>
                <div class="textColor">{{ detail.fee }}</div>
            </div>
            <div class="flex justify-between pb-68">
                <div class="text-grey">{{ $t('建仓成本') }}</div>
                <div class="textColor">{{ detail.trade_avg_price }}</div>
            </div>
            <div class="flex justify-between pb-68">
                <div class="text-grey">{{ $t('平仓价格') }}</div>
                <div class="textColor">{{ detail.close_avg_price }}</div>
            </div>
            <div class="flex justify-between pb-68">
                <div class="text-grey">{{ $t('订单号') }}</div>
                <div class="textColor">{{ detail.order_no }}</div>
            </div>
            <div class="flex justify-between pb-68">
                <div class="text-grey">{{ $t('开仓时间') }}</div>
                <div class="textColor">{{ detail.create_time }}</div>
            </div>
            <div class="flex justify-between pb-68">
                <div class="text-grey">{{ $t('平仓时间') }}</div>
                <div class="textColor">{{ detail.close_time }}</div>
            </div>
        </div>
    </div>
</template>
 
<script>
import { _orderHoldDetail } from "@/service/trade.api";
import assetsHead from "@/components/assets-head";
export default {
    name: "orderDetail",
    data() {
        return {
            detail: {
 
            },
            timer: null
        }
    },
    components: {
        assetsHead,
    },
    created() {
        let order_no = this.$route.query.order_no;
        this.timer = setInterval(() => {
            this.fetchDetail(order_no);
        }, 1000);
    },
    methods: {
        handleText(state) {
            let str = '';
            if (state == 'created') {
                str = this.$t('已平仓')
            } else {
                str = this.$t('持仓')
            }
            return str;
        },
        handleWord(direction, offset, price_type) {
            let a = ''
            let b = ''
            if (price_type === 'limit') {
                a = this.$t('限价')
            } else {
                a = this.$t('市价')
            }
            console.log(direction)
            if (direction === 'buy' && offset === 'open') {
                b = this.$t('开多')
            } else if (direction === 'sell' && offset === 'open') {
                b = this.$t('开空')
            } else if (direction === 'buy' && offset === 'close') {
                b = this.$t('平多')
            } else {
                b = this.$t('平空')
            }
            return b
        },
        onClickLeft() {
            this.$router.go(-1);
        },
        fetchDetail(order_no) {
            _orderHoldDetail(order_no).then(data => {
                this.detail = data
            })
        },
        clearTimer() {
            clearInterval(this.timer)
            this.timer = null
        },
    },
    beforeUnmount() {
        this.clearTimer()
    }
}
</script>
 
<style lang="scss" scoped>
.orderDetail {
    width: 100%;
    box-sizing: border-box;
}
 
.grey-line {
    background-color: $light-grey;
    height: 15px;
}
</style>