xbx #134

Merged
theluyuan merged 34 commits from xbx into master 2020-11-18 06:56:15 +00:00
4 changed files with 5 additions and 3 deletions
Showing only changes of commit 224bacbb2a - Show all commits

View File

@ -191,7 +191,7 @@ export default {
tixianjine: "Withdrawal amount", tixianjine: "Withdrawal amount",
quanbujine: "Total amount", quanbujine: "Total amount",
yueshu: "Your balance is only", yueshu: "Your balance is only",
zuiditixian: "Minimum withdrawal amount ¥ 100", zuiditixian: "Minimum withdrawal amount",
mingxichaxun: "Details inquiry", mingxichaxun: "Details inquiry",
kaishiriqi: "Please select the start date", kaishiriqi: "Please select the start date",
jieshuriqi: "Please select the end date", jieshuriqi: "Please select the end date",

View File

@ -12,6 +12,8 @@ getset().then((res: any)=>{
// en.shichangtishi = `Minimum ${res.lowerLimit} person, maximum ${res.numberCeiling} people` // en.shichangtishi = `Minimum ${res.lowerLimit} person, maximum ${res.numberCeiling} people`
zh.tixianzhu = `注:每笔提现收取${res.sxf}服务费,最低${ res.symbol + res.minmoney }` zh.tixianzhu = `注:每笔提现收取${res.sxf}服务费,最低${ res.symbol + res.minmoney }`
en.tixianzhu = `Note: ${res.sxf} service fee will be charged for each withdrawal, with a minimum of ${ res.symbol + res.minmoney }` en.tixianzhu = `Note: ${res.sxf} service fee will be charged for each withdrawal, with a minimum of ${ res.symbol + res.minmoney }`
zh.zuiditixian = "最低提现金额" + res.symbol + res.minwithdraw
en.zuiditixian = "Minimum withdrawal amount " + res.symbol + res.minwithdraw
const i18n = geti18n(); const i18n = geti18n();
const loc = i18n.locale.value; const loc = i18n.locale.value;
i18n.locale.value = ''; i18n.locale.value = '';

View File

@ -194,7 +194,7 @@ export default {
tixianjine:"提现金额", tixianjine:"提现金额",
quanbujine:"全部金额", quanbujine:"全部金额",
yueshu:"您的余额只有", yueshu:"您的余额只有",
zuiditixian:"最低提现金额¥100", zuiditixian:"最低提现金额",
mingxichaxun:"明细查询", mingxichaxun:"明细查询",
kaishiriqi:"请选择开始日期", kaishiriqi:"请选择开始日期",
jieshuriqi:"请选择结束日期", jieshuriqi:"请选择结束日期",

View File

@ -180,7 +180,7 @@ export default defineComponent({
if (accountlist.value.length == 0) { if (accountlist.value.length == 0) {
message.error(lan.$t('kongzhanghaoliebiao')); message.error(lan.$t('kongzhanghaoliebiao'));
return; return;
} else if (payinfo.value.money < 100) { } else if (payinfo.value.money < store.state.seting.minwithdraw) {
message.error(lan.$t('zuiditixian')); message.error(lan.$t('zuiditixian'));
return; return;
} else if (payinfo.value.money > yue.value) { } else if (payinfo.value.money > yue.value) {