zhb před 1 měsícem
rodič
revize
90581c1435

+ 1 - 0
locale/cn.json

@@ -1679,6 +1679,7 @@
       "LoginPwdOld": "原交易密码",
       "InvestorPwdOld": "原投资者密码",
       "NewPwd": "新密码",
+      "InvestorNewPwd": "新投资者密码",
       "Login": "交易账户",
       "Tips": "杠杆温馨提示:",
       "Tips1": "1.在CWGMarkets,您可以灵活地运用杠杆进行交易,不同账户类型的杠杆比例可以从1:1到2000:1。为使您的风险敞口最小化,保证金和杠杆的情况会根据您账户的净值以及数据行情时段做出动态调整。",

+ 4 - 4
pages/customer/components/TerminalChangePasswordDialog.vue

@@ -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>