1
李凌
2025-12-16 1201f7a4a72288816033dab8ab5058daf9425590
1
2 files modified
9 ■■■■■ changed files
src/components/Transform/mining-account/index.vue 2 ●●● patch | view | raw | blame | history
src/views/cryptos/Exchange/exchangePage.vue 7 ●●●●● patch | view | raw | blame | history
src/components/Transform/mining-account/index.vue
@@ -19,7 +19,7 @@
                <div class="account_card">
                    <mining-exchange-input :title="$t('至')"
                        :value="form.volume ? (form.volume * form.rate).toFixed(5) : ''" :actions="actions"
                        :value="form.volume ? (form.volume * form.rate).toFixed(8) : ''" :actions="actions"
                        @select="onSelect('symbol_to', $event)" :disabled="true" :type="2" :coin="form.symbol"
                        :coin1="form.symbol_to" :tips="[]" :showMax="false" :iconImg1="form.iconImg1"
                        :iconImg2="form.iconImg2" />
src/views/cryptos/Exchange/exchangePage.vue
@@ -39,8 +39,9 @@
                  class="w-70 h-70 rounded-full" />
              </div>
              <div class="text-grey font-28 mt-20">{{ $t('至') }}</div>
              <div class="font-30 mt-30" v-if="detail.volume">{{ (detail.volume * detail.rate).toFixed(5) }}
                {{ detail.symbol_to }}</div>
              <div class="font-30 mt-30" v-if="detail.volume">
                {{ (detail.volume * detail.rate).toFixed(8) }} {{ detail.symbol_to }}
              </div>
            </div>
          </div>
@@ -61,7 +62,7 @@
            <li class="flex justify-between font-28 mt-25">
              <span class="text-grey">{{ $t('汇率') }}</span>
              <span class="textColor">1 {{ detail.name &&
                detail.name.toUpperCase() }}≈{{ (detail.rate * 1).toFixed(5) }} {{ detail.symbol_to &&
                detail.name.toUpperCase() }}≈{{ (detail.rate * 1).toFixed(8) }} {{ detail.symbol_to &&
                  detail.symbol_to.toUpperCase() }}</span>
            </li>
          </ul>