| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <table class="w-max">
- <thead>
- <tr class="fn-sm">
- <th class="p-l-md p-y-xs fn-left">{{$t('exchange.d4')}}</th>
- <th class="fn-left">{{$t('exchange.d5')}}</th>
- <th class="fn-right">{{$t('exchange.d2')}}</th>
- <th class="p-r-md p-y-xs fn-right">{{$t('exchange.c5')}}</th>
- </tr>
- </thead>
- <tbody class="color-light">
- <tr v-for="(item,idx) in tradeList" :key="idx">
- <td class="p-l-md p-y-xs">{{parseTime(item.ts,false,'{h}:{i}:{s}')}}</td>
- <td :class="`color-${item.direction}`">
- <template v-if="item.direction=='buy'">
- {{$t('exchange.b5')}}
- </template>
- <template v-else-if="'sell'">
- {{$t('exchange.b6')}}
- </template>
- </td>
- <td class="fn-right">{{item.price}}</td>
- <td class="p-r-md p-y-xs fn-right">{{omitTo(item.amount,8)*1}}</td>
- </tr>
- </tbody>
- </table>
- </template>
- <script>
- import math from "@/utils/class/math";
- import date from "@/utils/class/date";
- export default {
- props: {
- tradeList: {
- default() {
- return [];
- },
- type: Array,
- required: false,
- },
- },
- methods:{
- parseTime:date.parseTime,
- omitTo:math.omitTo,
- }
- };
- </script>
|