Commit f26723f6 authored by 赵振东's avatar 赵振东

fix: 修改设置页面的账户取值字段

parent bbe7303a
export default {
'home.hello': 'Hello,',
'home.name': 'name',
'home.phone': 'account number:',
'home.phone': 'account:',
'home.account': 'account',
'home.roleName': 'role',
'home.orgName': 'Affiliation',
'home.accountInfo': 'Account information',
......
......@@ -2,6 +2,7 @@ export default {
'home.hello': '你好,',
'home.name': '姓名',
'home.phone': '账号:',
'home.account': '账号',
'home.roleName': '角色',
'home.orgName': '所属机构',
'home.accountInfo': '账户信息',
......
......@@ -19,7 +19,7 @@ const AccountInfo: React.FC<any> = ({ navigation }) => {
const _role = getCurrentRole(userStore?.userInfo);
setCurrentAI([
{ title: t('home.name', '姓名'), value: _userInfo?.name },
{ title: t('home.account', '账号'), value: _userInfo?.phone },
{ title: t('home.account', '账号'), value: _userInfo?.account },
{ title: t('home.roleName', '角色'), value: _role?.roleName },
{ title: t('home.orgName', '所属机构'), value: _userInfo?.orgName },
]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment