修复遗漏翻译
This commit is contained in:
@@ -107,7 +107,7 @@ function getConfig() {
|
||||
clickStatus = true;
|
||||
}
|
||||
else if (res.data.examimeStatus == 0) {//审核中
|
||||
$('.my .sid b').text(`In Review`);
|
||||
$('.my .sid b').text(langReplace(localLang.demoModule.text11));
|
||||
$('.my .sid b').css('color', '#FF5262');
|
||||
$('.my .text').text(``);
|
||||
cssFun();
|
||||
@@ -119,7 +119,7 @@ function getConfig() {
|
||||
// $('.my .text').text(`${langReplace(localLang.demoModule.text9)}`);
|
||||
// }
|
||||
// else if (res.data.examimeStatus == 0) {//审核中
|
||||
// $('.my .sid b').text(`In Review`);
|
||||
// $('.my .sid b').text(langReplace(localLang.demoModule.text11));
|
||||
// $('.my .sid b').css('color', '#FF5262');
|
||||
// $('.my .text').text(``);
|
||||
// clickStatus = false;
|
||||
|
@@ -83,7 +83,7 @@ function search(searchKey) {
|
||||
if (res.data.length == 0) {
|
||||
$('.null').show();
|
||||
$('.reselect').attr('type', 'back');
|
||||
$('.reselect').text('Reselect');
|
||||
$('.reselect').text(langReplace(localLang.select.text4));
|
||||
$('.reselect').show();
|
||||
} else {
|
||||
res.data.forEach(res => {
|
||||
@@ -97,9 +97,9 @@ function search(searchKey) {
|
||||
$('.data').append(str);
|
||||
$('.data').show();
|
||||
$('.reselect').attr('type', 'redo');
|
||||
$('.reselect').text('Generate again');
|
||||
$('.reselect').text(langReplace(localLang.select.text5));
|
||||
$('.reselect').show();
|
||||
$('.apply').text('Apply');
|
||||
$('.apply').text(langReplace(localLang.select.text6));
|
||||
$('.apply').show();
|
||||
}
|
||||
} else {
|
||||
@@ -131,7 +131,7 @@ $('.reselect').click(function () {
|
||||
} else {
|
||||
erbanNo = '';
|
||||
$('.apply').removeClass('actBut');
|
||||
$('.apply').text(`Apply`);
|
||||
$('.apply').text(langReplace(localLang.select.text6));
|
||||
search(num);
|
||||
}
|
||||
})
|
||||
@@ -141,7 +141,7 @@ $('.data').on('click', ' .box', function (params) {
|
||||
$('.data .box').attr('click', 0);
|
||||
$('.data .box img').attr('src', `./images/not.png`);
|
||||
$('.apply').removeClass('actBut');
|
||||
$('.apply').text(`Apply`);
|
||||
$('.apply').text(langReplace(localLang.select.text6));
|
||||
$('.data .box .mp').hide()
|
||||
$('.apply').attr('click', `0`)
|
||||
erbanNo = '';
|
||||
@@ -153,7 +153,7 @@ $('.data').on('click', ' .box', function (params) {
|
||||
erbanNo = $(this).attr('erbanNo');
|
||||
$('.apply').addClass('actBut');
|
||||
$('.apply').attr('click', `1`)
|
||||
$('.apply').text(`Apply SID ${erbanNo}`);
|
||||
$('.apply').text(`${langReplace(localLang.select.text7)} ${erbanNo}`);
|
||||
}
|
||||
})
|
||||
// 确定申请按钮
|
||||
|
Reference in New Issue
Block a user