Browse Source

修复bug

master
longjieli 9 months ago
parent
commit
90a23774c2
7 changed files with 22 additions and 9 deletions
  1. +1
    -1
      components/popUpWindow/popUpWindow.vue
  2. +2
    -1
      locale/ar.js
  3. +2
    -1
      locale/en.js
  4. +2
    -1
      locale/es.js
  5. +4
    -3
      locale/fr.js
  6. +2
    -1
      locale/ru.js
  7. +9
    -1
      pages/register/register.vue

+ 1
- 1
components/popUpWindow/popUpWindow.vue View File

@ -2,7 +2,7 @@
<template>
<view v-if="show" class="popup-windown bx popup-bx">
<div class="popup-content">
<uni-icons class="popup-close" type="closeempty" size="20" color="#000"></uni-icons>
<uni-icons @click="close" class="popup-close" type="closeempty" size="20" color="#000"></uni-icons>
<view class="popup-main">
<div class="bg">
<image src="../../static/popUpWindow/bg.png" mode="widthFix"></image>


+ 2
- 1
locale/ar.js View File

@ -202,7 +202,8 @@ export default {
"payPassEmpty": "يرجى ملء كلمة مرور الدفع",
"okPayPassEmpty": "يرجى ملء كلمة مرور الدفع مرة أخرى",
"payPassInconsistency": "عدم اتساق كلمة مرور الدفع",
"tickProtocol": "يرجى وضع علامة على الاتفاقية"
"tickProtocol": "يرجى وضع علامة على الاتفاقية",
"invitationCodeEmpty" : "الرجاء إدخال رمز الدعوة"
},
"persionalInfo": {
"title": "معلومات شخصية",


+ 2
- 1
locale/en.js View File

@ -204,7 +204,8 @@ export default {
"payPassEmpty": "Please fill in the payment code",
"okPayPassEmpty": "Please fill in the payment password again",
"payPassInconsistency": "The payment password is inconsistent",
"tickProtocol": "Please tick the agreement"
"tickProtocol": "Please tick the agreement",
"invitationCodeEmpty" : "Please fill in the invitation code"
},
"persionalInfo": {
"title": "Personal Info",


+ 2
- 1
locale/es.js View File

@ -204,7 +204,8 @@ export default {
"payPassEmpty": "Por favor, ingrese el código de pago",
"okPayPassEmpty": "Por favor, ingrese la contraseña de pago nuevamente",
"payPassInconsistency": "La contraseña de pago es inconsistente",
"tickProtocol": "Por favor, marque el protocolo"
"tickProtocol": "Por favor, marque el protocolo",
"invitationCodeEmpty" : "Por favor, rellene el Código de invitación."
},
"persionalInfo": {
"title": "Información Personal",


+ 4
- 3
locale/fr.js View File

@ -145,8 +145,8 @@ export default {
"moneyEmpty": "Veuillez remplir le montant de recharge",
"AmountThan0": "Le montant de recharge doit être supérieur à 0",
"payPassEmpty": "Veuillez remplir le code de paiement",
"copyAddress" : "Copier l'adresse",
"copySuccess" : "Réplication réussie"
"copyAddress": "Copier l'adresse",
"copySuccess": "Réplication réussie"
},
"withdraw": {
"title": "Retrait",
@ -202,7 +202,8 @@ export default {
"payPassEmpty": "Veuillez remplir le code de paiement",
"okPayPassEmpty": "Veuillez remplir à nouveau le mot de passe de paiement",
"payPassInconsistency": "Les mots de passe de paiement sont différents",
"tickProtocol": "Veuillez cocher l'accord"
"tickProtocol": "Veuillez cocher l'accord",
"invitationCodeEmpty": "Veuillez remplir le Code d'invitation"
},
"persionalInfo": {
"title": "Informations Personnelles",


+ 2
- 1
locale/ru.js View File

@ -204,7 +204,8 @@ export default {
"payPassEmpty": "Пожалуйста, введите платежный пароль",
"okPayPassEmpty": "Пожалуйста, введите платежный пароль еще раз",
"payPassInconsistency": "Пароли для платежей не совпадают",
"tickProtocol": "Пожалуйста, поставьте галочку в соглашении"
"tickProtocol": "Пожалуйста, поставьте галочку в соглашении",
"invitationCodeEmpty": "Пожалуйста, заполните код приглашения."
},
"loginRecord": {
"title": "Запись входа",


+ 9
- 1
pages/register/register.vue View File

@ -118,7 +118,8 @@
password,
okPassword,
payPass,
okPayPass
okPayPass,
invitationCode
} = this.form
if (account.trim() == '') {
uni.showToast({
@ -169,6 +170,13 @@
});
return false;
}
if(invitationCode.trim() == ''){
uni.showToast({
title: this.$t('page.register.invitationCodeEmpty'),
icon: 'none'
});
return false;
}
// if (this.agree.length <= 0 && this.agree[0] != 'agree') {
// uni.showToast({
// title: this.$t('page.register.tickProtocol'),


Loading…
Cancel
Save