diff --git a/src/views/forgetpassword/index.vue b/src/views/forgetpassword/index.vue index d7875d9..9c99db2 100644 --- a/src/views/forgetpassword/index.vue +++ b/src/views/forgetpassword/index.vue @@ -220,9 +220,14 @@ export default { if (!this.users || this.users.length <= 0) return '' let str = '' this.users.forEach((item, index) => { - str += `${item.UserName}(${item.UserTypeShortName})` - if (index < this.users.length - 1) { - str += '; ' + if (index === 0) { + str += `${item.UserName}(` + } + + if (index === this.users.length - 1) { + str += `${item.UserTypeShortName})` + } else { + str += `${item.UserTypeShortName}、` } }) return str @@ -327,7 +332,8 @@ export default { obj.sendDisabled = true; obj.sendTitle = `${this.$t( "passwordReset:button:wait" - )}(${countdown}s)`; + ) + } (${countdown}s)`; countdown--; // eslint-disable-next-line no-self-assign countdown = countdown; diff --git a/src/views/trials/trials-myinfo/account.vue b/src/views/trials/trials-myinfo/account.vue index 5f6b571..22f9bc9 100644 --- a/src/views/trials/trials-myinfo/account.vue +++ b/src/views/trials/trials-myinfo/account.vue @@ -23,10 +23,10 @@ + :title="this.$t('recompose:tip:inputCheckCode')" type="number" /> - + {{ $t("trials:trials-myinfo:button:update") }}