|
|
@@ -7,13 +7,13 @@
|
|
|
<template v-if="props.pwdType != 3">
|
|
|
<uni-forms :model="passwordInfo" labelWidth="200" label-position="top" class="crm-form">
|
|
|
<uni-forms-item
|
|
|
- :label="props.pwdType == 1 ? t('Custom.Settings.LoginPwdOld') : t('Custom.Settings.InvestorPwdOld')">
|
|
|
+ :label="t('Custom.Settings.LoginPwdOld')">
|
|
|
<uni-easyinput type="password" :clearable="false" v-model="passwordInfo.oldPassword"
|
|
|
- :placeholder="props.pwdType == 1 ? t('Custom.Settings.LoginPwdOld') : t('Custom.Settings.InvestorPwdOld')" />
|
|
|
+ :placeholder="t('Custom.Settings.LoginPwdOld')" />
|
|
|
</uni-forms-item>
|
|
|
- <uni-forms-item :label="t('Custom.Settings.NewPwd')">
|
|
|
+ <uni-forms-item :label="props.pwdType == 1 ? t('Custom.Settings.NewPwd') : t('Custom.Settings.InvestorNewPwd')">
|
|
|
<uni-easyinput type="password" :clearable="false" v-model="passwordInfo.newPassword"
|
|
|
- :placeholder="t('Custom.Settings.NewPwd')" />
|
|
|
+ :placeholder="props.pwdType == 1 ? t('Custom.Settings.NewPwd') : t('Custom.Settings.InvestorNewPwd')" />
|
|
|
</uni-forms-item>
|
|
|
</uni-forms>
|
|
|
|