lxf
2025-07-16 f96f952d95930e1295051c1bfe348dd324ebf878
src/components/Transform/list-quotation/index.vue
@@ -30,7 +30,7 @@
                <p class="flex flex-col">
                  <span class="flex items-end font-32 flex items-center">
                    <span class="textColor font-600 font-30">{{ item.name || '--'
                      }}</span>
                    }}</span>
                  </span>
                  <span class="font-24 text-grey text-left">{{ (item.amount * 1).toFixed(2) }}</span>
                </p>
@@ -39,10 +39,8 @@
                <p class="textColor font-32 font-600">{{ item.close || '--' }}</p>
              </li>
              <li class="right flex items-center justify-end">
                <p
                  class="w-153 font-31 h-71 text-white border-0 text-center btn"
                  :class="item.change_ratio > 0 ? 'bg-green' : 'bg-red'"
                >
                <p class="w-153 font-31 h-71 text-white border-0 text-center btn"
                  :class="item.change_ratio > 0 ? 'bg-green' : 'bg-red'">
                  {{ item.change_ratio === 0 ? 0 : item.change_ratio }}%
                </p>
              </li>
@@ -75,6 +73,7 @@
      type: 'left' //left 从左往右 right 从有王座
    }
  },
  props: {
    showMore: {
      type: Boolean,
@@ -98,8 +97,7 @@
    [List.name]: List,
    [Cell.name]: Cell,
    ExTabs
  },
  mounted() {
  }, mounted() {
    this.SET_CURRENCY()
  },
  methods: {
@@ -178,7 +176,7 @@
      } else if (this.active == 3) {
        this.showList = [...this.listData].sort(this.compare("volume", 'up'))
      }
      this.$forceUpdate()
      this.$forceUpdate();
    }
  }
}