Browse Source

代理认证的认证审核弹窗国际化修改,提示信息国际化异常的修改

main
TonyStark 1 month ago
parent
commit
461d8862a9
  1. 12
      src/views/business/agentVerification/index.vue
  2. 4
      src/views/business/userAccount/index.vue
  3. 4
      src/views/business/userInfo/index.vue

12
src/views/business/agentVerification/index.vue

@ -99,16 +99,16 @@
<el-dialog :title="title" :visible.sync="open" width="700px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="auto">
<el-form-item :label="$t('business.agent.agentVerification.agentName')" prop="agentName">
<el-input v-model="form.agentName" :placeholder="$t('business.agent.agentVerification.agentNamePlaceholder')"/>
<el-input v-model="form.agentName" :placeholder="$t('business.agent.agentVerification.placeholder.agentNamePlaceholder')"/>
</el-form-item>
<el-form-item :label="$t('business.agent.agentVerification.businessLicenseNumber')" prop="businessLicenseNumber">
<el-input v-model="form.businessLicenseNumber" :placeholder="$t('business.agent.agentVerification.businessLicenseNumberPlaceholder')"/>
<el-input v-model="form.businessLicenseNumber" :placeholder="$t('business.agent.agentVerification.businessLicenseNumber')"/>
</el-form-item>
<el-form-item :label="$t('business.agent.agentVerification.legalPersonName')" prop="legalPersonName">
<el-input v-model="form.legalPersonName" :placeholder="$t('business.agent.agentVerification.legalPersonNamePlaceholder')"/>
<el-input v-model="form.legalPersonName" :placeholder="$t('business.agent.agentVerification.legalPersonName')"/>
</el-form-item>
<el-form-item :label="$t('business.agent.agentVerification.legalPersonIdCard')" prop="legalPersonIdCard">
<el-input v-model="form.legalPersonIdCard" :placeholder="$t('business.agent.agentVerification.legalPersonIdCardPlaceholder')"/>
<el-input v-model="form.legalPersonIdCard" :placeholder="$t('business.agent.agentVerification.placeholder.legalPersonIdCardPlaceholder')"/>
</el-form-item>
<el-form-item :label="$t('business.userManager.userVerification.idCardFront')" prop="idCardFrontImagePath">
<el-upload
@ -150,10 +150,10 @@
</el-upload>
</el-form-item>
<el-form-item :label="$t('business.agent.agentVerification.electronicContract')" prop="electronicContract">
<el-input v-model="form.electronicContract" :placeholder="$t('business.agent.agentVerification.electronicContractPlaceholder')"/>
<el-input v-model="form.electronicContract" :placeholder="$t('business.agent.agentVerification.electronicContract')"/>
</el-form-item>
<el-form-item :label="$t('business.agent.agentVerification.earnestMoney')" prop="earnestMoney">
<el-input v-model="form.earnestMoney" :placeholder="$t('business.agent.agentVerification.earnestMoneyPlaceholder')"/>
<el-input v-model="form.earnestMoney" :placeholder="$t('business.agent.agentVerification.earnestMoney')"/>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">

4
src/views/business/userAccount/index.vue

@ -333,7 +333,7 @@ export default {
this.buttonLoading = true;
if (this.form.id != null) {
updateUserAccount(this.form).then(response => {
this.$modal.msgSuccess(this.$t('common.button.updateSuccess'));
this.$modal.msgSuccess(this.$t('common.promptMsg.editSuccess'));
this.open = false;
this.getList();
}).finally(() => {
@ -341,7 +341,7 @@ export default {
});
} else {
addUserAccount(this.form).then(response => {
this.$modal.msgSuccess(this.$t('common.button.addSuccess'));
this.$modal.msgSuccess(this.$t('common.promptMsg.addSuccess'));
this.open = false;
this.getList();
}).finally(() => {

4
src/views/business/userInfo/index.vue

@ -299,7 +299,7 @@
this.buttonLoading = true;
if (this.form.id != null) {
updateUserInfo(this.form).then(response => {
this.$modal.msgSuccess(this.$t('common.button.editSuccess'));
this.$modal.msgSuccess(this.$t('common.promptMsg.editSuccess'));
this.open = false;
this.getList();
}).finally(() => {
@ -307,7 +307,7 @@
});
} else {
addUserInfo(this.form).then(response => {
this.$modal.msgSuccess(this.$t('common.button.addSuccess'));
this.$modal.msgSuccess(this.$t('common.promptMsg.addSuccess'));
this.open = false;
this.getList();
}).finally(() => {

Loading…
Cancel
Save