|
|
|
@ -117,6 +117,7 @@ |
|
|
|
alt="Copy to clipboard" |
|
|
|
:data-index="index" |
|
|
|
class="btn btn-outline-light btn-sm withdrawal-control" |
|
|
|
style="color: #F7D558; border: none;vertical-align: bottom;" |
|
|
|
>{{ $t("wallet.copy") }}</a |
|
|
|
> |
|
|
|
</span> |
|
|
|
@ -126,7 +127,8 @@ |
|
|
|
<!-- <div class="btn-group btn-group-sm text-nowrap" role="group" aria-label="Basic example"> --> |
|
|
|
<button |
|
|
|
type="button" |
|
|
|
class="btn btn-sm btn-info" |
|
|
|
class="btn btn-sm" |
|
|
|
style="background-color: #F7D558;" |
|
|
|
data-toggle="modal" |
|
|
|
data-target="#editAddress" |
|
|
|
@click="edit(address)" |
|
|
|
@ -135,7 +137,8 @@ |
|
|
|
</button> |
|
|
|
<button |
|
|
|
type="button" |
|
|
|
class="btn btn-sm btn-danger" |
|
|
|
class="btn btn-sm" |
|
|
|
style="background-color: #C7A048;" |
|
|
|
@click="del(address.id)" |
|
|
|
> |
|
|
|
{{ $t("wallet.deleteAddress") }} |
|
|
|
@ -163,7 +166,7 @@ |
|
|
|
aria-hidden="true" |
|
|
|
> |
|
|
|
<div class="modal-dialog modal-dialog-centered"> |
|
|
|
<div class="modal-content bg-panel"> |
|
|
|
<div class="modal-content"> |
|
|
|
<div class="modal-header"> |
|
|
|
<h5 class="modal-title" id="exampleModalLabel"> |
|
|
|
{{ action == "add" ? $t("wallet.add") : $t("wallet.edit") |
|
|
|
@ -230,14 +233,16 @@ |
|
|
|
<div class="modal-footer"> |
|
|
|
<button |
|
|
|
type="button" |
|
|
|
class="btn btn-secondary rounded-pill" |
|
|
|
class="btn rounded-pill" |
|
|
|
style="background-color: #ccc;" |
|
|
|
data-dismiss="modal" |
|
|
|
> |
|
|
|
{{ $t("common.cancelBtn") }} |
|
|
|
</button> |
|
|
|
<button |
|
|
|
type="button" |
|
|
|
class="btn btn-primary rounded-pill" |
|
|
|
class="btn rounded-pill" |
|
|
|
style="background-color: #F7D558;" |
|
|
|
@click="handleUserAddress" |
|
|
|
> |
|
|
|
{{ $t("common.confirmBtn") }} |
|
|
|
@ -314,7 +319,14 @@ export default { |
|
|
|
del(id) { |
|
|
|
this.$confirm(this.$t("wallet.remarksDelete") + "?",{ |
|
|
|
confirmButtonText:this.$t('common.confirmBtn'), |
|
|
|
cancelButtonText: this.$t('common.cancelBtn') |
|
|
|
cancelButtonText: this.$t('common.cancelBtn'), |
|
|
|
iconColor:'#F7D558',//无效 |
|
|
|
confirmButtonType: 'Warning',//无效 |
|
|
|
type: 'Warning',//无效 |
|
|
|
confirmButtonColor:'#F7D558',//无效 |
|
|
|
confirmButtonType:'Warning',//无效 |
|
|
|
confirmButtonClass:'bg-yellow2',//有效 |
|
|
|
cancelButtonClass:'bg-gray-ccc',//有效 |
|
|
|
}) |
|
|
|
.then(() => { |
|
|
|
Wallet.withdrawalAddressDeleted({ id }) |
|
|
|
@ -411,9 +423,26 @@ export default { |
|
|
|
border-color:#4e4e5d; |
|
|
|
} |
|
|
|
.el-collapse-item__wrap{ |
|
|
|
background: transparent; |
|
|
|
border-color:#4e4e5d; |
|
|
|
border-color:#eee; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
.wallet-page .tab-pane .table thead tr, |
|
|
|
.wallet-page .tab-pane .table tbody tr{ |
|
|
|
background: #fff !important; |
|
|
|
line-height: 29px; |
|
|
|
} |
|
|
|
.wallet-page .tab-pane .table tbody tr:hover{ |
|
|
|
background-color: #ffffde; |
|
|
|
} |
|
|
|
.wallet-page .tab-pane .table thead tr th{ |
|
|
|
color: #999; |
|
|
|
} |
|
|
|
.wallet-page .tab-pane .table tr td{ |
|
|
|
color: #666; |
|
|
|
} |
|
|
|
.stripe tbody tr:first-of-type td{ |
|
|
|
border-top-color: #eee; |
|
|
|
} |
|
|
|
.wallet-page .panel-box .heading{ |
|
|
|
background: #fff; |
|
|
|
@ -425,4 +454,14 @@ export default { |
|
|
|
/deep/ .el-collapse-item__header{ |
|
|
|
border-color: #f8f8f8; |
|
|
|
} |
|
|
|
.modal-content{ |
|
|
|
background-color: #fff; |
|
|
|
} |
|
|
|
.modal-header{ |
|
|
|
border-bottom-color: #ddd; |
|
|
|
} |
|
|
|
.modal-footer{ |
|
|
|
border-top-color: #ddd; |
|
|
|
} |
|
|
|
|
|
|
|
</style> |
|
|
|
|