diff --git a/src/views/withdraw/WithdrawApplyView.vue b/src/views/withdraw/WithdrawApplyView.vue
index f6e7562..2b9cd68 100644
--- a/src/views/withdraw/WithdrawApplyView.vue
+++ b/src/views/withdraw/WithdrawApplyView.vue
@@ -31,6 +31,7 @@
+
@@ -651,7 +652,7 @@ export default {
$("#chinaUnionPay-grant").hide();
}
$("#chinaUnionPay-modal").modal('show');
- } else if (accountType == 0b100 || accountType == 0b1000) {
+ } else if (accountType == 0b100 || accountType == 0b1000 || accountType == 0b10000) {
$("#abroad-id").val(id);
$("#abroad-createTime").val(createTime);
$("#abroad-erbanNo").val(erbanNo);
diff --git a/src/views/withdraw/WithdrawConfigView.vue b/src/views/withdraw/WithdrawConfigView.vue
index 4345f7e..95496ba 100644
--- a/src/views/withdraw/WithdrawConfigView.vue
+++ b/src/views/withdraw/WithdrawConfigView.vue
@@ -62,6 +62,7 @@
+
@@ -74,6 +75,7 @@
+
@@ -86,6 +88,20 @@
+
+
+
+
+
@@ -98,9 +114,10 @@
+
-
+
+
1
@@ -298,6 +321,9 @@ export default {
} else if (accountType == 0b1000) {
$('#bankOfSingaporeId').val(id);
$("#bankOfSingapore").val(currencyType);
+ } else if (accountType == 0b10000) {
+ $('#taiWanBankId').val(id);
+ $("#taiWanBank").val(currencyType);
}
}
}
@@ -330,6 +356,8 @@ export default {
$('#myr').val(rate);
} else if (currency == 'SGD') {
$('#sgd').val(rate);
+ } else if (currency == 'TWD') {
+ $('#twd').val(rate);
}
}
}
@@ -349,7 +377,8 @@ export default {
{ id: $('#orderAccountId').val(), accountName: '其它账户', currencyType: $('#orderAccount').val(), accountType: 0b1 },
{ id: $('#chinaUnionPayId').val(), accountName: '中国大陆银联', currencyType: $('#chinaUnionPay').val(), accountType: 0b10 },
{ id: $('#mayBankId').val(), accountName: '马来西亚银行', currencyType: $('#mayBank').val(), accountType: 0b100 },
- { id: $('#bankOfSingaporeId').val(), accountName: '新加坡银行', currencyType: $('#bankOfSingapore').val(), accountType: 0b1000 }
+ { id: $('#bankOfSingaporeId').val(), accountName: '新加坡银行', currencyType: $('#bankOfSingapore').val(), accountType: 0b1000 },
+ { id: $('#taiWanBankId').val(), accountName: '台湾地区银行', currencyType: $('#taiWanBank').val(), accountType: 0b10000 }
];
const data = {
id: $('#id').val(),
@@ -387,6 +416,7 @@ export default {
cny: $('#cny').val(),
myr: $('#myr').val(),
sgd: $('#sgd').val(),
+ twd: $('#twd').val(),
other: 1
}
$.ajax({
diff --git a/src/views/withdraw/WithdrawUserView.vue b/src/views/withdraw/WithdrawUserView.vue
index 2cac48f..cfe7e13 100644
--- a/src/views/withdraw/WithdrawUserView.vue
+++ b/src/views/withdraw/WithdrawUserView.vue
@@ -307,10 +307,12 @@ export default {
var isMayBank = row.isMayBank == 1 ? '
查看>' : '未绑定';
var isBankOfSingapore = row.isBankOfSingapore == 1 ? '
查看>' : '未绑定';
var isOrderAccount = row.isOrderAccount == 1 ? '
查看>' : '未绑定';
+ var isTaiWanBank = row.isTaiWanBank == 1 ? '
查看>' : '未绑定';
var value = '';
value += '中国大陆银联 ' + isChinaUnionPay + '
';
value += '马来西亚银行 ' + isMayBank + '
';
value += '新加坡银行 ' + isBankOfSingapore + '
';
+ value += '台湾地区银行 ' + isTaiWanBank + '
';
value += '其它账户 ' + isOrderAccount;
return value;
}
@@ -402,7 +404,7 @@ export default {
$('#chinaUnionPay-frontPhoto').attr("src", frontPhoto);
$('#chinaUnionPay-backPhoto').attr("src", backPhoto);
$("#chinaUnionPay-modal").modal('show');
- } else if (accountType == 0b100 || accountType == 0b1000) {
+ } else if (accountType == 0b100 || accountType == 0b1000 || accountType == 0b10000) {
$("#abroad-id").val(id);
$("#abroad-surname").val(surname);
$("#abroad-name").val(name);