From 0c44fd7e951658849e0b703f085f86bd4e192bc6 Mon Sep 17 00:00:00 2001 From: dragon <3013557874@qq.com> Date: Fri, 6 Dec 2024 16:07:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=AE=98=E7=BD=91=E5=8A=A0?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=9C=9F=E8=80=B3=E5=85=B6=E6=8F=90=E7=8E=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view/molistar/common/js/common2.js | 2 +- view/molistar/home/css/index.css | 14 +- view/molistar/home/css/index.scss | 13 +- view/molistar/home/index.html | 12 +- view/molistar/home/js/index.js | 2 +- view/molistar/home/local/ar.js | 1 + view/molistar/home/local/en.js | 1 + view/molistar/home/local/tr.js | 1 + view/molistar/home/local/zh.js | 1 + .../modules/guild-ar/BANK_TRANSFER_LIRA.html | 66 ++++++ view/molistar/modules/guild-ar/CARD_USD.html | 66 ++++++ view/molistar/modules/guild-ar/css/index.css | 1 + view/molistar/modules/guild-ar/css/index.scss | 1 + view/molistar/modules/guild-ar/index.html | 2 +- view/molistar/modules/guild-ar/js/CARD_USD.js | 212 ++++++++++++++++++ .../modules/guild-ar/js/bankTransferLira.js | 212 ++++++++++++++++++ view/molistar/modules/guild-ar/local/ar.js | 29 ++- view/molistar/modules/guild-ar/local/en.js | 28 ++- view/molistar/modules/guild-ar/local/tr.js | 29 ++- view/molistar/modules/guild-ar/local/zh.js | 29 ++- .../modules/guild-ar/salary_account.html | 10 +- 21 files changed, 712 insertions(+), 20 deletions(-) create mode 100644 view/molistar/modules/guild-ar/BANK_TRANSFER_LIRA.html create mode 100644 view/molistar/modules/guild-ar/CARD_USD.html create mode 100644 view/molistar/modules/guild-ar/js/CARD_USD.js create mode 100644 view/molistar/modules/guild-ar/js/bankTransferLira.js diff --git a/view/molistar/common/js/common2.js b/view/molistar/common/js/common2.js index c2727ce..0fd4a3c 100644 --- a/view/molistar/common/js/common2.js +++ b/view/molistar/common/js/common2.js @@ -740,7 +740,7 @@ function getInfoFromClient() { } else { // 非app环境调试参数 - pubInfo.uid = sessionStorage.getItem("uid") ? sessionStorage.getItem("uid") : ''; + pubInfo.uid = sessionStorage.getItem("uid") ? sessionStorage.getItem("uid") : '3511'; // pubInfo.ticket = sessionStorage.getItem("ticket") ? sessionStorage.getItem("ticket") : ''; pubInfo.h5_token = sessionStorage.getItem("ticket") ? sessionStorage.getItem("ticket") : ''; pubInfo.deviceId = "0"; diff --git a/view/molistar/home/css/index.css b/view/molistar/home/css/index.css index 610f05b..54f46e3 100644 --- a/view/molistar/home/css/index.css +++ b/view/molistar/home/css/index.css @@ -77,7 +77,7 @@ html .container .pagesBox .page1 .recharge { width: 1.62667rem; height: 0.48rem; - line-height: 0.4rem; + line-height: 0.42667rem; background: linear-gradient(270deg, #E29030 0%, #FCC074 100%); text-align: center; color: #fff; @@ -152,6 +152,18 @@ right: 6rem; top: 8.45333rem; } + body .container .pagesBox .page1 .team, + html .container .pagesBox .page1 .team { + width: 100%; + text-align: center; + color: #fff; + opacity: 0.6; + font-size: 0.21333rem; + font-weight: 400; + position: absolute; + left: 0; + bottom: 0.4rem; + } body .container .pagesBox .page2, html .container .pagesBox .page2 { width: 100%; diff --git a/view/molistar/home/css/index.scss b/view/molistar/home/css/index.scss index e443b5e..beddcdf 100644 --- a/view/molistar/home/css/index.scss +++ b/view/molistar/home/css/index.scss @@ -88,7 +88,7 @@ .recharge { width: px2rem(122); height: px2rem(36); - line-height: px2rem(30); + line-height: px2rem(32); background: linear-gradient(270deg, #E29030 0%, #FCC074 100%); text-align: center; color: #fff; @@ -163,6 +163,17 @@ right: px2rem(450); top: px2rem(634); } + .team{ + width: 100%; + text-align: center; + color: #fff; + opacity: 0.6; + font-size: px2rem(16); + font-weight: 400; + position: absolute; + left: 0; + bottom: px2rem(30); + } } .page2 { diff --git a/view/molistar/home/index.html b/view/molistar/home/index.html index 9fb7222..6897578 100644 --- a/view/molistar/home/index.html +++ b/view/molistar/home/index.html @@ -16,7 +16,7 @@ - + @@ -48,16 +48,16 @@
-
+
-
+
-
+
-
+
@@ -142,7 +142,7 @@ - + diff --git a/view/molistar/home/js/index.js b/view/molistar/home/js/index.js index dfb3142..18a561b 100644 --- a/view/molistar/home/js/index.js +++ b/view/molistar/home/js/index.js @@ -412,7 +412,7 @@ function animatedImplementFun(index) { } // 處理動畫 function animatedFun(dom, arrClass) { - // // 獲取元素 + // // // 獲取元素 // const element = dom; // // 添加動畫 // element.addClass(...arrClass); diff --git a/view/molistar/home/local/ar.js b/view/molistar/home/local/ar.js index 1f11833..207ae11 100644 --- a/view/molistar/home/local/ar.js +++ b/view/molistar/home/local/ar.js @@ -60,6 +60,7 @@ langAr = {

استمع إلى الأصوات الجميلة وابحث عن رفقة جديدة

+
Molistar Team
روح مثيرة للاهتمام
diff --git a/view/molistar/home/local/en.js b/view/molistar/home/local/en.js index 73ccae6..932c611 100644 --- a/view/molistar/home/local/en.js +++ b/view/molistar/home/local/en.js @@ -59,6 +59,7 @@ langEn = {

Hear good voices and find new companionship

+
Molistar Team
Interesting Soul
diff --git a/view/molistar/home/local/tr.js b/view/molistar/home/local/tr.js index aa1f419..dd1d8de 100644 --- a/view/molistar/home/local/tr.js +++ b/view/molistar/home/local/tr.js @@ -59,6 +59,7 @@ langTr = {

İyi sesler dinleyin ve yeni bir arkadaşlık bulun

+
Molistar Team
İlginç Ruh
diff --git a/view/molistar/home/local/zh.js b/view/molistar/home/local/zh.js index b10e41d..9eaf40e 100644 --- a/view/molistar/home/local/zh.js +++ b/view/molistar/home/local/zh.js @@ -59,6 +59,7 @@ langZh = {

聽到美好的聲音,並找到新的陪伴

+
Molistar Team
有趣的靈魂
diff --git a/view/molistar/modules/guild-ar/BANK_TRANSFER_LIRA.html b/view/molistar/modules/guild-ar/BANK_TRANSFER_LIRA.html new file mode 100644 index 0000000..e792226 --- /dev/null +++ b/view/molistar/modules/guild-ar/BANK_TRANSFER_LIRA.html @@ -0,0 +1,66 @@ + + + + + + + + + + + + + +
+ + +
+ +
+ + +
+

*

+
+ + +
+

*

+
+ +
+

*

+
+ +
+ +
+ +
+ +
+
+ +
+
+
+
+
+
+
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/view/molistar/modules/guild-ar/CARD_USD.html b/view/molistar/modules/guild-ar/CARD_USD.html new file mode 100644 index 0000000..b3d9d8a --- /dev/null +++ b/view/molistar/modules/guild-ar/CARD_USD.html @@ -0,0 +1,66 @@ + + + + + + + + + + + + + +
+ + +
+ +
+ + +
+

*

+
+ + +
+

*

+
+ +
+

*

+
+ +
+ +
+ +
+ +
+
+ +
+
+
+
+
+
+
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/view/molistar/modules/guild-ar/css/index.css b/view/molistar/modules/guild-ar/css/index.css index 067e391..f14cbe6 100644 --- a/view/molistar/modules/guild-ar/css/index.css +++ b/view/molistar/modules/guild-ar/css/index.css @@ -181,6 +181,7 @@ body { padding: 0 0.13333rem; position: relative; word-spacing: normal; + white-space: nowrap; } .headerBox .headerBox_in div img { diff --git a/view/molistar/modules/guild-ar/css/index.scss b/view/molistar/modules/guild-ar/css/index.scss index a48f379..a381704 100644 --- a/view/molistar/modules/guild-ar/css/index.scss +++ b/view/molistar/modules/guild-ar/css/index.scss @@ -186,6 +186,7 @@ body { padding: 0 px2rem(10); position: relative; word-spacing: normal; + white-space: nowrap; img { display: inline; diff --git a/view/molistar/modules/guild-ar/index.html b/view/molistar/modules/guild-ar/index.html index af189e2..2ab1181 100644 --- a/view/molistar/modules/guild-ar/index.html +++ b/view/molistar/modules/guild-ar/index.html @@ -7,7 +7,7 @@ - + diff --git a/view/molistar/modules/guild-ar/js/CARD_USD.js b/view/molistar/modules/guild-ar/js/CARD_USD.js new file mode 100644 index 0000000..276d29f --- /dev/null +++ b/view/molistar/modules/guild-ar/js/CARD_USD.js @@ -0,0 +1,212 @@ +const urlData = getQueryString(); +let urlPrefix = getUrlPrefix() +let browser = checkVersion() +let env = EnvCheck(); +if (env == 'test') { + new VConsole(); +} +// 封裝layer消息提醒框 +let layerIndex +var langReplace; +var localLang; +const showLoading = (content = langReplace(localLang.demoModule.layerIndex1)) => { + layer.open({ + type: 2, + shadeClose: false, + content, + success(e) { + layerIndex = $(e).attr('index') + } + }) +} +const hideLoading = (index) => { + layer.close(index) +} +const toastMsg = (content = langReplace(localLang.demoModule.layerIndex2), time = 2) => { + layer.open({ + content, + time, + skin: 'msg' + }) +} +var fields = {}; +$(function () { + getInfoFromClient(); + fuzzyMatchUpdateQueryStringParameterFun(); // 判断语言 + setTimeout(function () { + // 頁面全屏 + if (browser.app) { + if (browser.android) { + window.androidJsObj.initShowNav(false) + } else { + window.webkit.messageHandlers.initShowNav.postMessage(0) + } + }; + // 頂部返回事件 + $('.back img').click(() => { + window.history.back(); + }) + fuzzyMatchUpdateQueryStringParameterFun(); // 判断语言 + langReplace = window.lang.replace; + localLang = window.lang; + translateFun(); + get() + }, 100); + +}); +function translateFun() { + langReplace = window.lang.replace; + localLang = window.lang; + $('.text1').text(langReplace(localLang.CARD_USD.text1)); + $('.text2').text(langReplace(localLang.payonner.text2)); + $('.text3').text(langReplace(localLang.payonner.text3)); + $('.text4').text(langReplace(localLang.payonner.text4)); + $('.text5').text(langReplace(localLang.payonner.text5)); + $('.text6').attr('placeholder', langReplace(localLang.payonner.text6)); + $('.text7').attr('placeholder', langReplace(localLang.payonner.text7)); + $('.text8').attr('placeholder', langReplace(localLang.CARD_USD.text8)); + $('.text9').attr('placeholder', langReplace(localLang.payonner.text9)); + $('.p1').text(langReplace(localLang.pTitle.p1)); + $('.p7').text(langReplace(localLang.CARD_USD.text11)); + $('.p5').text(langReplace(localLang.pTitle.p5)); + +} +// 获取 +function get() { + showLoading(); + networkRequest({ + type: "GET", + url: urlPrefix + "/guild/usd/withdrawAccount/get", + data: { type: getQueryString().type }, + success: function (res) { + if (res.code == 200) { + // 回显数据 + $('.currencyType input').val(langReplace(localLang.payonner.text6) + res.data.currency); + fields = res.data.fields; + if (fields.country == '') { + $('.but .determine').hide(); + $('.but .ok').show(); + $('.box input').attr('disabled', false) + } else { + $('.but .determine').show(); + $('.but .ok').hide(); + $('.box input').attr('disabled', true) + } + $('.currencyType input').attr('disabled', true) + $('.country input').val(fields.country); + $('.payeeAccountNo input').val(fields.bank_account); + $('.payeeName input').val(fields.full_name); + // 渲染国家 + $('.pub .pub_in .countryPub').remove(); + var str = ''; + res.data.countryOptionalList.forEach(res => { + str += ` +
${res.name}
+ ` + }) + $('.pub .pub_in').append(str); + } else { + toastMsg(res.message); + } + hideLoading(layerIndex); + }, + error: function (res) { + console.log(res, "报错啦"); + hideLoading(layerIndex); + }, + }); +} +// 选择国家 +$('.country').click(function () { + $('.pub').show(); +}) +// 关闭选择国家 +$('.pub').click(function (params) { + $('.pub').hide(); +}) +// 选中国家 +var nameTitle +$('.pub .pub_in').on('click', '.countryPub', function name(params) { + $(this).addClass('act').siblings().removeClass('act'); + nameTitle = $(this).attr('name'); + var country = $(this).attr('country'); + fields.country = country; + return false; +}) +// 确认选中国家 +$('.pub .pub_in .soure').click(function name(params) { + $('.country input').val(nameTitle); + $('.pub').hide(); +}) +// 确认绑定按钮 +$('.but .ok').click(function (params) { + console.log(fields); + var obj = {} + obj.country = fields.country; + obj.bank_account = $('.payeeAccountNo input').val(); + obj.full_name = $('.payeeName input').val(); + if (obj.country && obj.bank_account && obj.full_name) { + fields = obj; + var objJson = { + uid: pubInfo.uid, + type: getQueryString().type, + fields, + } + update(JSON.stringify(objJson)); + } else { + toastMsg(langReplace(localLang.payonner.text10)); + } +}) +// 绑定更新信息 +function update(obj) { + showLoading(); + networkRequest({ + type: "post", + url: urlPrefix + "/guild/usd/withdrawAccount/bound", + contentType: 'application/json;charset=UTF-8', + data: obj, + success: function (res) { + if (res.code == 200) { + get(); + toastMsg('success'); + location.href = './salary_account.html' + } else { + toastMsg(res.message); + } + hideLoading(layerIndex); + }, + error: function (res) { + hideLoading(layerIndex); + }, + }); +} +// 解绑 +$('.but .determine').click(function () { + var objJson = { + uid: pubInfo.uid, + type: getQueryString().type, + } + unbound(JSON.stringify(objJson)); +}) +// 解绑 +function unbound(obj) { + showLoading(); + networkRequest({ + type: "post", + url: urlPrefix + "/guild/usd/withdrawAccount/unbound", + contentType: 'application/json;charset=UTF-8', + data: obj, + success: function (res) { + if (res.code == 200) { + get(); + toastMsg('success'); + } else { + toastMsg(res.message); + } + hideLoading(layerIndex); + }, + error: function (res) { + hideLoading(layerIndex); + }, + }); +} \ No newline at end of file diff --git a/view/molistar/modules/guild-ar/js/bankTransferLira.js b/view/molistar/modules/guild-ar/js/bankTransferLira.js new file mode 100644 index 0000000..bd16b22 --- /dev/null +++ b/view/molistar/modules/guild-ar/js/bankTransferLira.js @@ -0,0 +1,212 @@ +const urlData = getQueryString(); +let urlPrefix = getUrlPrefix() +let browser = checkVersion() +let env = EnvCheck(); +if (env == 'test') { + new VConsole(); +} +// 封裝layer消息提醒框 +let layerIndex +var langReplace; +var localLang; +const showLoading = (content = langReplace(localLang.demoModule.layerIndex1)) => { + layer.open({ + type: 2, + shadeClose: false, + content, + success(e) { + layerIndex = $(e).attr('index') + } + }) +} +const hideLoading = (index) => { + layer.close(index) +} +const toastMsg = (content = langReplace(localLang.demoModule.layerIndex2), time = 2) => { + layer.open({ + content, + time, + skin: 'msg' + }) +} +var fields = {}; +$(function () { + getInfoFromClient(); + fuzzyMatchUpdateQueryStringParameterFun(); // 判断语言 + setTimeout(function () { + // 頁面全屏 + if (browser.app) { + if (browser.android) { + window.androidJsObj.initShowNav(false) + } else { + window.webkit.messageHandlers.initShowNav.postMessage(0) + } + }; + // 頂部返回事件 + $('.back img').click(() => { + window.history.back(); + }) + fuzzyMatchUpdateQueryStringParameterFun(); // 判断语言 + langReplace = window.lang.replace; + localLang = window.lang; + translateFun(); + get() + }, 100); + +}); +function translateFun() { + langReplace = window.lang.replace; + localLang = window.lang; + $('.text1').text(langReplace(localLang.bankTransferLira.text1)); + $('.text2').text(langReplace(localLang.payonner.text2)); + $('.text3').text(langReplace(localLang.payonner.text3)); + $('.text4').text(langReplace(localLang.payonner.text4)); + $('.text5').text(langReplace(localLang.payonner.text5)); + $('.text6').attr('placeholder', langReplace(localLang.payonner.text6)); + $('.text7').attr('placeholder', langReplace(localLang.payonner.text7)); + $('.text8').attr('placeholder', langReplace(localLang.bankTransferLira.text8)); + $('.text9').attr('placeholder', langReplace(localLang.payonner.text9)); + $('.p1').text(langReplace(localLang.pTitle.p1)); + $('.p7').text(langReplace(localLang.bankTransferLira.text11)); + $('.p5').text(langReplace(localLang.pTitle.p5)); + +} +// 获取 +function get() { + showLoading(); + networkRequest({ + type: "GET", + url: urlPrefix + "/guild/usd/withdrawAccount/get", + data: { type: getQueryString().type }, + success: function (res) { + if (res.code == 200) { + // 回显数据 + $('.currencyType input').val(langReplace(localLang.payonner.text6) + res.data.currency); + fields = res.data.fields; + if (fields.country == '') { + $('.but .determine').hide(); + $('.but .ok').show(); + $('.box input').attr('disabled', false) + } else { + $('.but .determine').show(); + $('.but .ok').hide(); + $('.box input').attr('disabled', true) + } + $('.currencyType input').attr('disabled', true) + $('.country input').val(fields.country); + $('.payeeAccountNo input').val(fields.bank_account); + $('.payeeName input').val(fields.full_name); + // 渲染国家 + $('.pub .pub_in .countryPub').remove(); + var str = ''; + res.data.countryOptionalList.forEach(res => { + str += ` +
${res.name}
+ ` + }) + $('.pub .pub_in').append(str); + } else { + toastMsg(res.message); + } + hideLoading(layerIndex); + }, + error: function (res) { + console.log(res, "报错啦"); + hideLoading(layerIndex); + }, + }); +} +// 选择国家 +$('.country').click(function () { + $('.pub').show(); +}) +// 关闭选择国家 +$('.pub').click(function (params) { + $('.pub').hide(); +}) +// 选中国家 +var nameTitle +$('.pub .pub_in').on('click', '.countryPub', function name(params) { + $(this).addClass('act').siblings().removeClass('act'); + nameTitle = $(this).attr('name'); + var country = $(this).attr('country'); + fields.country = country; + return false; +}) +// 确认选中国家 +$('.pub .pub_in .soure').click(function name(params) { + $('.country input').val(nameTitle); + $('.pub').hide(); +}) +// 确认绑定按钮 +$('.but .ok').click(function (params) { + console.log(fields); + var obj = {} + obj.country = fields.country; + obj.bank_account = $('.payeeAccountNo input').val(); + obj.full_name = $('.payeeName input').val(); + if (obj.country && obj.bank_account && obj.full_name) { + fields = obj; + var objJson = { + uid: pubInfo.uid, + type: getQueryString().type, + fields, + } + update(JSON.stringify(objJson)); + } else { + toastMsg(langReplace(localLang.payonner.text10)); + } +}) +// 绑定更新信息 +function update(obj) { + showLoading(); + networkRequest({ + type: "post", + url: urlPrefix + "/guild/usd/withdrawAccount/bound", + contentType: 'application/json;charset=UTF-8', + data: obj, + success: function (res) { + if (res.code == 200) { + get(); + toastMsg('success'); + location.href = './salary_account.html' + } else { + toastMsg(res.message); + } + hideLoading(layerIndex); + }, + error: function (res) { + hideLoading(layerIndex); + }, + }); +} +// 解绑 +$('.but .determine').click(function () { + var objJson = { + uid: pubInfo.uid, + type: getQueryString().type, + } + unbound(JSON.stringify(objJson)); +}) +// 解绑 +function unbound(obj) { + showLoading(); + networkRequest({ + type: "post", + url: urlPrefix + "/guild/usd/withdrawAccount/unbound", + contentType: 'application/json;charset=UTF-8', + data: obj, + success: function (res) { + if (res.code == 200) { + get(); + toastMsg('success'); + } else { + toastMsg(res.message); + } + hideLoading(layerIndex); + }, + error: function (res) { + hideLoading(layerIndex); + }, + }); +} \ No newline at end of file diff --git a/view/molistar/modules/guild-ar/local/ar.js b/view/molistar/modules/guild-ar/local/ar.js index 8cd1a8c..e6cb5b6 100644 --- a/view/molistar/modules/guild-ar/local/ar.js +++ b/view/molistar/modules/guild-ar/local/ar.js @@ -345,5 +345,32 @@ langAr = { text5: `اختيار التاريخ`, // 阿拉伯文 text6: `تأكيد`, // 阿拉伯文 text7: `يبحث`, - } + }, + bankTransferLira: { + text1: `تحويل بنكي بالليرة`, + text2: `تأكيد`, + text3: `إلغاء الربط`, + text4: `الدولة`, + text5: `موافق`, + text6: `نوع العملة:`, + text7: `الدولة`, + text8: `TR+24رقم`, + text9: `اسم المستلم`, + text10: `لا يمكن ترك الحقول الإجبارية فارغة`, + text11: `حساب المستلم`, + }, + CARD_USD: { + text1: `بطاقة بالدولار الأمريكي`, + text2: `تأكيد`, + text3: `إلغاء الربط`, + text4: `الدولة`, + text5: `موافق`, + text6: `نوع العملة:`, + text7: `الدولة`, + text8: `حساب المستلم`, + text9: `اسم المستلم`, + text10: `لا يمكن ترك الحقول الإجبارية فارغة`, + text11: `حساب المستلم`, + }, + } \ No newline at end of file diff --git a/view/molistar/modules/guild-ar/local/en.js b/view/molistar/modules/guild-ar/local/en.js index 19d0b6f..64368ed 100644 --- a/view/molistar/modules/guild-ar/local/en.js +++ b/view/molistar/modules/guild-ar/local/en.js @@ -345,5 +345,31 @@ langEn = { text5: `Date selection`, text6: `Confirm`, text7: `Search`, - } + }, + bankTransferLira: { + text1: `BankTransfer lira `, + text2: `Confirm`, + text3: `Unbind `, + text4: `Country`, + text5: `OK`, + text6: `Currency Type:`, + text7: `Country`, + text8: `TR+24Numbers`, + text9: `payeeName`, + text10: `Mandatory fields cannot be blank`, + text11: `payeeAccount`, + }, + CARD_USD: { + text1: `Card usd`, + text2: `Confirm`, + text3: `Unbind `, + text4: `Country`, + text5: `OK`, + text6: `Currency Type:`, + text7: `Country`, + text8: `payeeAccount`, + text9: `payeeName`, + text10: `Mandatory fields cannot be blank`, + text11: `payeeAccount`, + }, } diff --git a/view/molistar/modules/guild-ar/local/tr.js b/view/molistar/modules/guild-ar/local/tr.js index 0c8b03a..dc006a2 100644 --- a/view/molistar/modules/guild-ar/local/tr.js +++ b/view/molistar/modules/guild-ar/local/tr.js @@ -345,6 +345,33 @@ langTr = { text5: `Tarih Seçimi`, text6: `Onayla`, text7: `Ara`, - } + }, + bankTransferLira: { + text1: `Banka Transferi Lira`, + text2: `Onayla`, + text3: `Bağlantıyı Kes`, + text4: `Ülke`, + text5: `Tamam`, + text6: `Para Birimi Türü:`, + text7: `Ülke`, + text8: `TR+24Numara`, + text9: `Alıcı Adı`, + text10: `Zorunlu alanlar boş bırakılamaz`, + text11: `Alıcı Hesabı`, + }, + CARD_USD: { + text1: `Kart USD`, + text2: `Onayla`, + text3: `Bağlantıyı Kes`, + text4: `Ülke`, + text5: `Tamam`, + text6: `Para Birimi Türü:`, + text7: `Ülke`, + text8: `Alıcı Hesabı`, + text9: `Alıcı Adı`, + text10: `Zorunlu alanlar boş bırakılamaz`, + text11: `Alıcı Hesabı`, + }, + }; diff --git a/view/molistar/modules/guild-ar/local/zh.js b/view/molistar/modules/guild-ar/local/zh.js index e3a76cb..020181a 100644 --- a/view/molistar/modules/guild-ar/local/zh.js +++ b/view/molistar/modules/guild-ar/local/zh.js @@ -346,5 +346,32 @@ langZh = { text5: `日期選擇`, // 繁體中文 text6: `確認`, // 繁體中文 text7: `查詢`, - } + }, + bankTransferLira: { + text1: `銀行轉帳里拉`, + text2: `確認`, + text3: `解除綁定`, + text4: `國家`, + text5: `確定`, + text6: `貨幣類型:`, + text7: `國家`, + text8: `TR+24數字`, + text9: `收款人名稱`, + text10: `必填欄位不能為空`, + text11: `收款人帳號`, + }, + CARD_USD: { + text1: `卡片美元`, + text2: `確認`, + text3: `解除綁定`, + text4: `國家`, + text5: `確定`, + text6: `貨幣類型:`, + text7: `國家`, + text8: `收款人帳號`, + text9: `收款人名稱`, + text10: `必填欄位不能為空`, + text11: `收款人帳號`, + }, + } \ No newline at end of file diff --git a/view/molistar/modules/guild-ar/salary_account.html b/view/molistar/modules/guild-ar/salary_account.html index 4192fc0..51bce2f 100644 --- a/view/molistar/modules/guild-ar/salary_account.html +++ b/view/molistar/modules/guild-ar/salary_account.html @@ -220,11 +220,11 @@ - - - - - + + + + +