|
|
|
@ -181,14 +181,15 @@ |
|
|
|
<input class="form-check-input" type="radio" v-model="depositeAdressType" name="deposite—address-type" id="deposite-omni" value="1" /> |
|
|
|
<label class="form-check-label" for="deposite-omni">OMNI</label> |
|
|
|
</div> --> |
|
|
|
<div class="form-check form-check-inline"> |
|
|
|
<input class="form-check-input" type="radio" v-model="depositeAdressType" name="deposite—address-type" id="deposite-trc20" value="3" /> |
|
|
|
<label class="form-check-label" for="deposite-trc20">TRC20</label> |
|
|
|
</div> |
|
|
|
<div class="form-check form-check-inline"> |
|
|
|
<input class="form-check-input" type="radio" v-model="depositeAdressType" name="deposite—address-type" id="deposite-erc20" value="2" /> |
|
|
|
<label class="form-check-label" for="deposite-erc20">ERC20</label> |
|
|
|
</div> |
|
|
|
<div class="form-check form-check-inline"> |
|
|
|
<input class="form-check-input" type="radio" v-model="depositeAdressType" name="deposite—address-type" id="deposite-trc20" value="3" /> |
|
|
|
<label class="form-check-label" for="deposite-trc20">TRC20</label> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
@ -317,14 +318,15 @@ |
|
|
|
<input class="form-check-input" type="radio" name="withdraw-address-type" id="withdraw-omni" v-model="withdraw.addressType" value="1" /> |
|
|
|
<label class="form-check-label" for="withdraw-omni">OMNI</label> |
|
|
|
</div> --> |
|
|
|
<div class="form-check form-check-inline"> |
|
|
|
<input class="form-check-input" type="radio" name="withdraw-address-type" id="withdraw-trc20" v-model="withdraw.addressType" value="3" /> |
|
|
|
<label class="form-check-label" for="withdraw-trc20">TRC20</label> |
|
|
|
</div> |
|
|
|
<div class="form-check form-check-inline"> |
|
|
|
<input class="form-check-input" type="radio" name="withdraw-address-type" id="withdraw-erc20" v-model="withdraw.addressType" value="2" /> |
|
|
|
<label class="form-check-label" for="withdraw-erc20">ERC20</label> |
|
|
|
</div> |
|
|
|
<div class="form-check form-check-inline"> |
|
|
|
<input class="form-check-input" type="radio" name="withdraw-address-type" id="withdraw-trc20" v-model="withdraw.addressType" value="3" /> |
|
|
|
<label class="form-check-label" for="withdraw-trc20">TRC20</label> |
|
|
|
</div> |
|
|
|
|
|
|
|
</template> |
|
|
|
<div class="form-group mt-2"> |
|
|
|
<label class="d-flex justify-content-between" for="formGroupExampleInput"> |
|
|
|
@ -416,7 +418,7 @@ export default { |
|
|
|
showValue: true, // 默认隐藏资产数值 |
|
|
|
|
|
|
|
depositeCoin: null, |
|
|
|
depositeAdressType: 3, // 默认充值类型 1 为 omin 2 为 erc20 |
|
|
|
depositeAdressType: 2, // 默认充值类型 1 为 omin 2 为 erc20 |
|
|
|
|
|
|
|
withdrawCoin: null, |
|
|
|
|
|
|
|
@ -432,7 +434,7 @@ export default { |
|
|
|
coin_id: "", |
|
|
|
amount: "", |
|
|
|
address: "", |
|
|
|
addressType: 3, // 默认提币类型 1 为 omni; 2 为 erc20, |
|
|
|
addressType: 2, // 默认提币类型 1 为 omni; 2 为 erc20, |
|
|
|
code_type: 1, |
|
|
|
code: '' |
|
|
|
}, |
|
|
|
|