| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <template>
- <div class="fn-sm p-x-md">
- <table class="w-max">
- <thead>
- <tr class="fn-10">
- <th class="fn-left p-l-md p-y-xs">{{$t('option.a0')}}</th>
- <th class="fn-left">{{$t('option.d0')}}</th>
- <th class="fn-right p-r-md">{{$t('option.d2')}}</th>
- </tr>
- </thead>
- <tbody class="color-light trade-list">
- <tr v-for="item in list" :key="item.order_no">
- <td class="fn-left p-l-md p-y-xs rounded-bl-xs rounded-tl-xs">
- <div>{{item.pair_time_name}}</div>
- <div class="fn-sm color-default">{{$date(item.created_at)}}</div>
- </td>
- <td class="fn-left" :class="getColor(item.delivery_up_down)">
-
- {{item.delivery_range}}% ({{getStatusText(item.delivery_up_down)}})
- </td>
-
- <td class="fn-right p-r-md rounded-br-xs rounded-tr-xs">
- {{$date(item.end_time_text)}}
- </td>
- </tr>
- <tr>
- <td
- class="fn-center color-default bg-panel-2 p-y-md link-active"
- @click="more"
- colspan="3"
- v-if="loadMore"
- >{{$t('option.d3')}}</td>
- </tr>
- </tbody>
- </table>
- </div>
- </template>
- <script>
- import Option from "@/api/option";
- export default {
- props: ["query"],
- data() {
- return {
- list: [],
- page: 1,
- loadMore: true,
- };
- },
- watch:{
- query(){
- this.reset()
- }
- },
- methods: {
- getColor(status) {
- if (status == 1) return "color-buy";
- if (status == 2) return "color-sell";
- if (status == 3) return "";
- },
- getStatusText(status) {
- if (status == 1) return this.$t('option.b8');
- if (status == 2) return this.$t('option.c0');
- if (status == 3) return this.$t('option.b9');
- },
- reset() {
- this.page = 1;
- this.loadMore = true;
- this.getSceneResultList();
- },
- more() {
- this.page++;
- this.getSceneResultList();
- },
- getSceneResultList() {
- let data = {
- status: 2,
- page: this.page,
- pair_id: this.query.pair_id,
- time_id: this.query.time_id,
- };
- Option.getSceneResultList(data).then((res) => {
- if (res.data.current_page == 1) this.list = [];
- this.list = [...this.list, ...res.data.data];
- if (res.data.data.length < res.data.per_page) {
- this.loadMore = false;
- }
- });
- },
- },
- created() {
- this.getSceneResultList();
- },
- };
- </script>
- <style lang="scss" scoped>
- .trade-list{
- tr:nth-of-type(2n-1){
- td{
- background: $panel-3;
- }
- }
- }
- </style>
|