1
jhzh
2024-10-21 b07cdd51ed7a0c545391da354660dc8ffb0d5fbd
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<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"> {{ handleWord(detail.direction, detail.state, detail.price_type) }}&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_open }}</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.stop_price_profit }}</div>
            </div>
            <div class="flex justify-between pb-68">
                <div class="text-grey">{{ $t('止损') }}</div>
                <div class="textColor">{{ detail.stop_price_loss }}</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">{{ getnewtime(detail.create_time) }}</div>
            </div>
            <div class="flex justify-between pb-68">
                <div class="text-grey">{{ $t('平仓时间') }}</div>
                <div class="textColor">{{ getnewtime(detail.close_time) }}</div>
            </div>
        </div>
    </div>
</template>
 
<script>
import { _orderHoldDetail } from "@/API/trade.api";
import assetsHead from "@/components/assets-head";
import { Popup } from "vant";
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: {
        getnewtime(e){
        // 给定的时间字符串 (中国时间)
        const inputDateStr = e;
        
        // 创建一个 Date 对象,注意这里输入的时间是 CST,实际上是 UTC+8
        const inputDate = new Date(inputDateStr + ' UTC+0800');
        
        // 转换为韩国时间 (KST),KST = UTC + 9 小时
        const kstDate = new Date(inputDate.getTime() + 1 * 60 * 60 * 1000); // 8小时 + 1小时 = 9小时
        
        // 获取年、月、日、小时、分钟和秒
        const year = inputDate.getFullYear();
        const month = inputDate.getMonth() + 1; // getMonth() 返回 0 到 11,需要加 1
        const day = inputDate.getDate();
        const hours = inputDate.getHours(); // 小时部分
        const minutes = inputDate.getMinutes(); // 分钟部分
        const seconds = inputDate.getSeconds(); // 秒部分
        
        // 格式化时间为“年-月-日 小时:分钟:秒”格式
        const formattedDate = `${year}-${month.toString().padStart(2, '0')}-${day.toString().padStart(2, '0')}`;
        const formattedTime = `${hours}:${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;
                      return formattedDate +' '+ formattedTime
            },
        handleText(state) {
            let str = '';
            if (state == 'created') {
                str = this.$t('已平仓')
            } else {
                str = this.$t('持仓')
            }
            return str;
        },
        handleWord(direction, state, price_type) {
            let a = ''
            let b = ''
            if (price_type === 'limit') {
                a = this.$t('限价')
            } else {
                a = this.$t('市价')
            }
            if (direction === 'buy' && state === 'submitted') {
                b = this.$t('开多')
            } else if (direction === 'sell' && state === 'submitted') {
                b = this.$t('开空')
            } else if (direction === 'buy' && state === 'created') {
                b = this.$t('平多')
            } else {
                b = this.$t('平空')
            }
            return a + '/' + b
        },
        onClickLeft() {
            this.$router.go(-1);
        },
        fetchDetail(order_no) {
            _orderHoldDetail(order_no).then(data => {
                this.detail = data
            })
        },
        clearTimer() {
            clearInterval(this.timer)
            this.timer = null
        },
    },
    beforeDestroy() {
        this.clearTimer()
    }
}
</script>
 
<style lang="scss" scoped>
.orderDetail {
    width: 100%;
    box-sizing: border-box;
    min-height: 100vh;
 
    @include themify() {
        background: themed("main_background");
    }
}
 
.grey-line {
    background-color: #F5F5F5;
    height: 15px;
}
 
::v-deep .van-nav-bar {
    @include themify() {
        background: themed("main_background");
    }
}
 
::v-deep .van-nav-bar__title {
    @include themify() {
        color: themed("text_color");
    }
}
</style>