| | |
| | | <input class="h-full pl-22 inputBackground1" type="number" v-model="pledgeAmount" @input="changeAmount" |
| | | :placeholder="$t('请输入质押数量')"> |
| | | <div class="right w-252 h-62 flex items-center pl-26 box-border" @click="openSelectBorrow"> |
| | | <img :src="`${HOST_URL}/symbol/${pledgeCurrency.toLowerCase()}.png`" class="w-48 h-48" alt="" /> |
| | | <img :src="`${HOST_URL}/wap/symbol/${pledgeCurrency.toLowerCase()}.png`" class="w-48 h-48" alt="" /> |
| | | <span class="ml-14 mr-30 w-90">{{ pledgeCurrency.toUpperCase() }}</span> |
| | | <img src="../../assets/image/icon-more.png" alt="logo" class="w-24 h-24" /> |
| | | </div> |
| | |
| | | <div class="flex items-center border-b-color justify-between" v-for="item in walletList" |
| | | :key="item.symbol" @click.stop="selectCoin(item)"> |
| | | <div class="flex items-center"> |
| | | <img :src="`${HOST_URL}/symbol/${item.symbol.toLowerCase()}.png`" class="w-40 h-40" |
| | | <img :src="`${HOST_URL}/wap/symbol/${item.symbol.toLowerCase()}.png`" class="w-40 h-40" |
| | | alt=""> |
| | | <span class="ml-14 font-24 text-grey">{{ item.symbol.toUpperCase() }}</span> |
| | | </div> |