1
jhzh
2024-09-15 402042e2ee63f1ed5b1d5d6df483270ab996e76e
src/page/perpetualContract/perpetualHistory.vue
@@ -28,28 +28,7 @@
          :key="item.title"
          :name="item.type"
        >
          <div class="all-select flex justify-end">
            <div class="select-box flex" @click.stop="isAll = !isAll">
              <div class="flex-1 font-24" v-if="symbol=='love'">ORBITAL/USDT</div>
           <div class="flex-1 font-24" v-else>{{ symbol.toUpperCase() }}/USDT</div>
              <van-icon name="arrow-down" />
              <div class="select-data" v-if="isAll">
                <div
                  class="select-item font-24"
                  @click.stop="selectItem(item2)"
                  v-for="(item2, index) in currencyList"
                  :key="index"
                >
            <div v-if="item2.symbol=='love'">
               ORBITAL/USDT
            </div>
                  <div v-else>
                     {{ item2.symbol.toUpperCase() }}/USDT
                  </div>
                </div>
              </div>
            </div>
          </div>
          <template v-if="type === 'orders'">
            <van-list
              v-model="loading"
@@ -172,6 +151,7 @@
      this.$router.go(-1);
    },
    async fetchList(symbol) {
      symbol = ''
      const _api = this.type === "orders" ? _orderListCur : _orderListHold;
      const type = this.type;
      _api(symbol, type, this.page).then((data) => {