11
jhzh
2024-08-01 4ebbadfe4c8c7aa6404dcd9b126cc8265bf03c0d
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
<template>
  <div class="list-quatation">
    <ex-tabs @tabs="onTabs"></ex-tabs>
    <van-list>
      <!-- <van-cell> -->
      <div
        class="flex items-center w-full textNew1 font-26"
        style="margin: 6px 0 15px"
      >
        <div class="left flex items-center newcolor1" style="margin-left: 36px">
          <span>{{ $t("交易对") }}</span>
          <div class="filter-box ml-10" v-if="active == 0">
            <div
              class="w-14 h-12"
              :class="[sortVal == 1 ? 'icon_top1_active' : 'icon_top1']"
              @click="listSort(1)"
            ></div>
            <div
              class="w-14 h-12"
              :class="[sortVal == 2 ? 'icon_top2_active' : 'icon_top2']"
              @click="listSort(2)"
            ></div>
          </div>
        </div>
        <div class="mid text-right flex justify-end items-center">
          {{ $t("最新价") }}
          <div class="filter-box ml-10" v-if="active == 0">
            <div
              class="w-14 h-12"
              :class="[sortVal == 3 ? 'icon_top1_active' : 'icon_top1']"
              @click="listSort(3)"
            ></div>
            <div
              class="w-14 h-12"
              :class="[sortVal == 4 ? 'icon_top2_active' : 'icon_top2']"
              @click="listSort(4)"
            ></div>
          </div>
        </div>
        <div
          class="rights text-right flex justify-end items-center"
          style="margin-right: 18px"
        >
          {{ active == 3 ? $t("成交额") : $t("24h涨跌幅") }}
          <div class="filter-box ml-10" v-if="active == 0">
            <div
              class="w-14 h-12"
              :class="[sortVal == 5 ? 'icon_top1_active' : 'icon_top1']"
              @click="listSort(5)"
            ></div>
            <div
              class="w-14 h-12"
              :class="[sortVal == 6 ? 'icon_top2_active' : 'icon_top2']"
              @click="listSort(6)"
            ></div>
          </div>
          <!--                  <img src="./icon-sort.png" alt="icon" class="w-13 h-22 ml-5"/>-->
        </div>
      </div>
      <!-- </van-cell> -->
      <transition-group :name="type" tag="div">
        <div v-if="active == 0" :key="active">
          <van-cell v-for="item in listData" :key="item.id">
            <ul
              class="flex justify-between w-full items-center"
              @click="onItemClick(item)"
            >
              <li class="flex items-center left">
                <!-- <div class="anniu"></div> -->
                <img :src="
                  item.symbol
                    ? `${HOST_URL}/wap/symbol/${item.symbol}.png`
                    : require('@/assets/loading-default.png')
                " class="w-52 h-52 rounded-full mr-16 ml-15" />
                <p class="flex flex-col" style="margin-left: 5px">
                  <span class="flex items-end font-32 flex items-center" s>
                      
                    <span class="textColor font-600 font-30">
                        
                      {{ item.name }}
                      <!-- {{ (item.symbol && item.symbol.toUpperCase()) || "--" }} -->
                    </span>
                    <!-- <span class="font-24" style="position: relative; top: 1px">
                      /{{ (item.name && item.name.split("/")[1]) || "--" }}
                    </span> -->
                  </span>
 
                  <span class="font-24 textNew1">{{
                    $t("成交量") + " " + (item.amount * 1).toFixed(2)
                  }}</span>
                </p>
              </li>
              <li class="flex flex-col items-end mid">
                <p
                  class="font-32 font-600"
                  :style="`color: ${
                    item.change_ratio > 0 ? '#2EBD85' : '#F6465D'
                  }`"
                >
                  {{ item.close || "--" }}
                </p>
                <p class="font-24 textNew1">
                  {{
                    (item.close &&
                      (item.close * currency.rate).toFixed(
                        item.close.toString().split(".")[1]
                          ? item.close.toString().split(".")[1].length
                          : 2
                      )) ||
                    "--"
                  }}{{ currency.currency_symbol }}
                </p>
              </li>
              <li class="rights flex items-center justify-end">
                <p
                  class="w-153 font-31 h-71 bg-green text-white border-0 text-center btn"
                  v-if="item.change_ratio > 0"
                >
                  +{{ item.change_ratio }}%
                </p>
                <p
                  class="w-153 font-31 h-71 bg-red text-white border-0 text-center btn"
                  v-else
                >
                  {{ item.change_ratio }}%
                </p>
              </li>
            </ul>
          </van-cell>
        </div>
        <div v-else :key="active">
          <van-cell v-for="item in showList" :key="item.id">
            <ul
              class="flex justify-between w-full items-center"
              @click="onItemClick(item)"
            >
              <li class="flex items-center left">
                <!-- <div class="anniu"></div> -->
                <img :src="
                  item.symbol
                    ? `${HOST_URL}/wap/symbol/${item.symbol}.png`
                    : require('@/assets/loading-default.png')
                " class="w-52 h-52 rounded-full mr-16 ml-15" />
                <p class="flex flex-col" style="margin-left: 5px">
                    
                  <span class="flex items-end font-32 flex items-center">
                      
                    <span class="textColor font-600 font-30">
                      {{ item.name }}
                      <!-- {{ (item.symbol && item.symbol.toUpperCase()) || "--" }} -->
                    </span>
                   <!-- <span class="font-24" style="position: relative; top: 1px">
                      /{{ (item.name && item.name.split("/")[1]) || "--" }}
                    </span> -->
                  </span>
                  <span class="font-24 textNew1">{{
                    $t("成交量") + " " + (item.amount * 1).toFixed(2)
                  }}</span>
                </p>
              </li>
              <li class="flex flex-col items-end mid">
                <p
                  class="font-32 font-600"
                  :style="`color: ${
                    item.change_ratio > 0 ? '#2EBD85' : '#F6465D'
                  }`"
                >
                  {{ item.close }}
                </p>
                <p class="font-24 textNew1">
                  {{
                    item.close &&
                    (item.close * currency.rate).toFixed(
                      item.close.toString().split(".")[1]
                        ? item.close.toString().split(".")[1].length
                        : 2
                    )
                  }}
                  {{ currency.currency_symbol }}
                </p>
              </li>
              <li class="rights flex items-center justify-end text-right">
                <div
                  v-if="active == 3"
                  class="textColor w-182 font-700 font-24"
                >
                  {{ (item.volume * 1).toFixed(2) }}
                </div>
                <template v-else>
                  <p
                    class="w-153 font-31 h-71 bg-green text-white border-0 text-center btn"
                    v-if="item.change_ratio > 0"
                  >
                    +{{ item.change_ratio }}%
                  </p>
                  <p
                    class="w-153 font-31 h-71 bg-red text-white border-0 text-center btn"
                    v-else
                  >
                    {{ item.change_ratio }}%
                  </p>
                </template>
              </li>
            </ul>
          </van-cell>
        </div>
      </transition-group>
    </van-list>
    <!-- <div class="flex flex-col justify-center items-center pb-58 mt-20" @click="$router.push('/quotes/?active=3')" v-if="showMore">
        <p class="textNew1 font-28 mb-8">{{ $t('查看') }}</p>
        <img src="./icon-arrow_more.png" alt="more" class="w-24 h-10"/>
    </div> -->
  </div>
</template>
 
<script>
import { List, Cell } from "vant";
import { mapGetters } from "vuex";
import { fixDate, setStorage } from "@/utils/utis";
import ExTabs from "@/components/ex-tabs/index.vue";
import { HOST_URL } from "@/config";
export default {
  name: "ListQuotation",
  data() {
    return {
      fixDate,
      HOST_URL,
      active: 0,
      type: "left", //left 从左往右 right 从有王座
      sortVal: 0,
    };
  },
  props: {
    showMore: {
      type: Boolean,
      default: true,
    },
    listData: {
      type: Array,
      default() {
        return [];
      },
    },
    tabActive: {
      type: Number,
      default: 0,
    },
  },
  computed: {
    ...mapGetters({ currency: "home/currency" }),
  },
  components: {
    [List.name]: List,
    [Cell.name]: Cell,
    ExTabs,
  },
  methods: {
    //排序
    listSort(val) {
      this.sortVal = val;
      this.$emit("listSort", val);
    },
    onItemClick(item) {
      if (this.tabActive == 2) {
        setStorage("tradeSymbol", item.symbol);
        //现货
        this.$router.push({
          path: `/trade/${item.symbol}`,
        });
      } else {
        // setStorage("symbol", item.symbol);
        // this.$router.push({
        //   path: `/perpetualContract/${item.symbol}`,
        // });
        setStorage("tradeSymbol", item.symbol);
        this.$router.push({
          path: `/trade/${item.symbol}`,
        });
      }
    },
    onTabs(val) {
      if (this.active < val) {
        this.type = "right";
      } else {
        this.type = "left";
      }
      this.active = val;
      if (val == 0) {
        this.showList = [...this.listData];
      } else if (val == 1) {
        this.showList = [...this.listData].sort(
          this.compare("change_ratio", "up")
        );
      } else if (val == 2) {
        this.showList = [...this.listData].sort(
          this.compare("change_ratio", "down")
        );
      } else if (val == 3) {
        this.showList = [...this.listData].sort(this.compare("volume", "up"));
      }
    },
    compare(p, type) {
      //这是比较函数
      return function (m, n) {
        var a = m[p];
        var b = n[p];
        if (a == b) {
          return;
        }
        if (type == "up") {
          return b - a; //升序
        } else if (type == "down") {
          return a - b; //降序
        } else {
          return a - b;
        }
      };
    },
  },
  watch: {
    listData() {
      if (this.active == 0) {
        this.showList = [...this.listData];
      } else if (this.active == 1) {
        this.showList = [...this.listData].sort(
          this.compare("change_ratio", "up")
        );
      } else if (this.active == 2) {
        this.showList = [...this.listData].sort(
          this.compare("change_ratio", "down")
        );
      } else if (this.active == 3) {
        this.showList = [...this.listData].sort(this.compare("volume", "up"));
      }
      this.$forceUpdate();
    },
  },
};
</script>
<style lang="scss" scoped>
.left-enter-active,
.left-leave-active,
.right-enter-active,
.right-leave-active {
  will-change: transform;
  transition: all 250ms;
}
 
.left-leave-active,
.right-leave-active {
  display: none;
}
 
.left-enter {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}
 
.left-leave {
  opacity: 0;
  transform: translate3d(0%, 0, 0);
}
 
.right-enter {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}
 
.right-leave {
  opacity: 0;
  transform: translate3d(0%, 0, 0);
}
 
.btn {
  // border-radius: 9px;
  line-height: 71px;
}
 
.left {
  width: 382px;
}
 
.mid {
  width: 185px;
}
 
.rights {
  width: 182px;
  margin-left: 38px;
}
 
.filter-box {
  .icon_top1 {
    background: url("@/assets/image/icon_top1.png") no-repeat center;
    background-size: 100% 100%;
  }
 
  .icon_top2 {
    background: url("@/assets/image/icon_top2.png") no-repeat center;
    background-size: 100% 100%;
    margin-top: 5px;
  }
 
  .icon_top1_active {
    background: url("@/assets/image/icon_top3.png") no-repeat center;
    background-size: 100% 100%;
  }
 
  .icon_top2_active {
    background: url("@/assets/image/icon_top4.png") no-repeat center;
    background-size: 100% 100%;
    margin-top: 5px;
  }
}
</style>