1
admin
2026-01-07 29f3a095dc58860849cdaa0b057b9fab495e5f6d
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
<!--  -->
<template>
    <div style="width: 100%;">
        <!-- header -->
        <div class="flex detailHerd justify-between align-center">
            <div class="flex align-center">
                <div class="goBack"><img src="@/assets/img/back.png" /></div>
                <div class="">
                    <div class="detailName">{{ $t('jy276') }}</div>
                    <div class="detailCode">XAUSD</div>
                </div>
            </div>
            <div>
                <div class="flex align-center">
                    <div class="simulation">{{ $t('jy302') }}</div>
                    <div class="money">$112.84</div>
                    <div class="sanjiao"><img :class="false ? 'xuanz' : ''" style="transition: all 0.5s;"
                            src="../../assets/img/xiala.png" alt /></div>
                </div>
                <div class="flex align-center justify-end wcbzj">{{ $t('jy301') }}
                    <div class="sanjiao"></div>
                </div>
            </div>
        </div>
        <!-- 提示标签 -->
        <div class="flex justify-between ">
            <div>
                    <div class="flex">
                        <div>
                            <img src=""/>
                        </div>
                        <div>
                            {{ $t('jy300') }}
                        </div>
                    </div>
                    <div class="flex"> 
                        <div class="">
                            <img src="@/assets/img/calendar.png"/>
                        </div>
                        <div>{{ $t('jy299') }}</div>
                    </div>
                
            </div>
            <div>
 
            </div>
        </div>
    </div>
</template>
 
<script>
export default {
    data() {
        return {
            dialogFlag: false,
        }
    },
    //生命周期 - 创建完成(访问当前this实例)
    created() {
 
    },
    //生命周期 - 挂载完成(访问DOM元素)
    mounted() {
 
    }
}
</script>
<style scoped lang='less'>
/* @import url(); 引入css类 */
.flex {
    display: flex;
}
 
.justify-between {
    justify-content: space-between;
}
 
.align-end {
    align-items: flex-end;
}
 
.justify-end {
    justify-content: flex-end;
}
 
.flex-wrap {
    flex-wrap: wrap;
}
 
.align-center {
    align-items: center;
}
 
.detailName {
    font-size: 0.48rem;
    color: #000;
    font-weight: 700;
}
 
.detailCode {
    margin-top: 0.15rem;
    font-size: 0.16rem;
    color: rgb(126, 127, 129);
}
 
.tabs_title {
    width: 23%;
    height: 100%;
    display: flex;
}
 
.tb {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.4103rem;
}
 
.active {
    font-size: 0.5003rem;
    font-weight: 800;
}
 
 
.sanjiao {
    width: 0.4rem;
    height: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
 
    img {
        width: 0.4rem;
        height: 0.4rem;
    }
}
 
.goBack {
    width: 0.35rem;
    height: 0.6rem;
    margin-right: 0.2rem;
 
    img {
        width: 100%;
        height: 100%;
    }
}
 
.detailHerd {
    width: 96%;
    height: 1rem;
    margin-left: 0;
    margin-right: 0;
    margin: 0 auto;
    margin-top: 0.1rem;
}
 
.simulation {
    width: 0.8rem;
    height: 0.4103rem;
    border-radius: 0.1rem;
    background: #4d73b1;
    color: #fff;
    font-size: 0.1577rem!important;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.money {
    margin-left: 0.1rem;
    margin-right: 0.1rem;
}
 
.wcbzj {
    font-size: 0.3077rem;
    color: #acaeaf;
    transform: scale(0.9);
}
</style>