|
|
@ -18,7 +18,8 @@ |
|
|
</div> |
|
|
</div> |
|
|
<div class="d-flex p-3 justify-content-between"> |
|
|
<div class="d-flex p-3 justify-content-between"> |
|
|
<div>{{$t('contract.a3')}}(USDT)</div> |
|
|
<div>{{$t('contract.a3')}}(USDT)</div> |
|
|
<div>{{(accountInfo.usable_balance).toFixed(2)}}</div> |
|
|
<!-- <div>{{(accountInfo.usable_balance).toFixed(2)}}</div> --> |
|
|
|
|
|
<div>{{omitTo(accountInfo.usable_balance,2)}}</div> |
|
|
</div> |
|
|
</div> |
|
|
<!-- <div class="d-flex p-3 justify-content-between"> |
|
|
<!-- <div class="d-flex p-3 justify-content-between"> |
|
|
<div>{{$t('contract.a4')}}(USDT)</div> |
|
|
<div>{{$t('contract.a4')}}(USDT)</div> |
|
|
@ -47,6 +48,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
<script> |
|
|
<script> |
|
|
|
|
|
import math from "@/utils/class/math.js"; |
|
|
export default { |
|
|
export default { |
|
|
name:'account', |
|
|
name:'account', |
|
|
props:{ |
|
|
props:{ |
|
|
@ -68,7 +70,7 @@ export default { |
|
|
console.log(this.accountInfo) |
|
|
console.log(this.accountInfo) |
|
|
}, |
|
|
}, |
|
|
methods:{ |
|
|
methods:{ |
|
|
|
|
|
omitTo: math.omitTo, |
|
|
} |
|
|
} |
|
|
}; |
|
|
}; |
|
|
</script> |
|
|
</script> |
|
|
|