Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7-Res
提交
f39cc903
提交
f39cc903
编写于
10月 09, 2020
作者:
zhujiamin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
手动切换多语言
上级
95aa9d4d
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
72 行增加
和
3 行删除
+72
-3
app-setting.vue
src/ibiz-core/components/app-setting/app-setting.vue
+52
-3
config.ts
src/ibiz-core/components/app-setting/config.ts
+20
-0
未找到文件。
src/ibiz-core/components/app-setting/app-setting.vue
浏览文件 @
f39cc903
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
<template
v-for=
"item in data.top"
>
<template
v-for=
"item in data.top"
>
<ion-item
:key=
"item.name"
v-if=
"item.isEnable"
@
click=
"onItemClick(item)"
>
<ion-item
:key=
"item.name"
v-if=
"item.isEnable"
@
click=
"onItemClick(item)"
>
<div
class=
"content-list-item-content"
>
<div
class=
"content-list-item-content"
>
<div
class=
"content-list-item-content-text"
>
{{
item
.
text
}}
</div>
<div
class=
"content-list-item-content-text"
>
{{
item
.
show
text
}}
</div>
<ion-icon
<ion-icon
v-if=
"item.name !== 'theme' && item.name !== 'accountInformation'"
v-if=
"item.name !== 'theme' && item.name !== 'accountInformation'"
name=
"chevron-forward-outline"
name=
"chevron-forward-outline"
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
<
template
v-for=
"item in data.center"
>
<
template
v-for=
"item in data.center"
>
<ion-item
:key=
"item.name"
v-if=
"item.isEnable"
@
click=
"onItemClick(item)"
>
<ion-item
:key=
"item.name"
v-if=
"item.isEnable"
@
click=
"onItemClick(item)"
>
<div
class=
"content-list-item-content"
>
<div
class=
"content-list-item-content"
>
<div
class=
"content-list-item-content-text"
>
{{
item
.
text
}}
</div>
<div
class=
"content-list-item-content-text"
>
{{
item
.
show
text
}}
</div>
<ion-icon
<ion-icon
v-if=
"item.name !== 'theme' && item.name !== 'accountInformation'"
v-if=
"item.name !== 'theme' && item.name !== 'accountInformation'"
name=
"chevron-forward-outline"
name=
"chevron-forward-outline"
...
@@ -48,7 +48,7 @@
...
@@ -48,7 +48,7 @@
<
template
v-for=
"item in data.bottom"
>
<
template
v-for=
"item in data.bottom"
>
<ion-item
:key=
"item.name"
v-if=
"item.isEnable"
@
click=
"onItemClick(item)"
>
<ion-item
:key=
"item.name"
v-if=
"item.isEnable"
@
click=
"onItemClick(item)"
>
<div
class=
"content-list-item-content"
>
<div
class=
"content-list-item-content"
>
<div
class=
"content-list-item-content-text"
>
{{
item
.
text
}}
</div>
<div
class=
"content-list-item-content-text"
>
{{
item
.
show
text
}}
</div>
<ion-icon
<ion-icon
v-if=
"item.name !== 'theme' && item.name !== 'accountInformation'"
v-if=
"item.name !== 'theme' && item.name !== 'accountInformation'"
name=
"chevron-forward-outline"
name=
"chevron-forward-outline"
...
@@ -75,6 +75,7 @@ import {
...
@@ -75,6 +75,7 @@ import {
Watch
,
Watch
,
}
from
"vue-property-decorator"
;
}
from
"vue-property-decorator"
;
import
{
settingConfig
}
from
"./config"
;
import
{
settingConfig
}
from
"./config"
;
import
i18n
from
'@/locale'
@
Component
({
@
Component
({
components
:
{},
components
:
{},
})
})
...
@@ -128,6 +129,14 @@ export default class AppSetting extends Vue {
...
@@ -128,6 +129,14 @@ export default class AppSetting extends Vue {
if
(
item
.
position
==
"bottom"
)
{
if
(
item
.
position
==
"bottom"
)
{
this
.
data
.
bottom
.
push
(
item
);
this
.
data
.
bottom
.
push
(
item
);
}
}
// 多语言处理
if
(
item
.
entext
)
{
if
(
i18n
.
locale
==
"ZH-CN"
)
{
item
.
showtext
=
item
.
text
;
}
else
if
(
i18n
.
locale
==
"EN-US"
){
item
.
showtext
=
item
.
entext
;
}
}
});
});
// 排序规则
// 排序规则
let
compare
=
(
property
:
any
)
=>
{
let
compare
=
(
property
:
any
)
=>
{
...
@@ -249,6 +258,44 @@ export default class AppSetting extends Vue {
...
@@ -249,6 +258,44 @@ export default class AppSetting extends Vue {
}
}
}
}
/**
* 语言列表
*
*/
public
lanArray
:
any
;
/**
* 切换语言
*
*/
public
changeLanguage
(){
let
lanarr
:
any
=
localStorage
.
getItem
(
'lanArray'
);
this
.
lanArray
=
JSON
.
parse
(
lanarr
);
this
.
lanArray
=
this
.
lanArray
.
map
(
(
language
:
any
)
=>
language
.
indexOf
(
"ZH-CN"
)
>
-
1
?
language
.
replace
(
"ZH-CN"
,
"EN-US"
)
:
language
.
replace
(
"EN-US"
,
"ZH-CN"
));
i18n
.
locale
=
this
.
lanArray
[
0
];
localStorage
.
setItem
(
'local'
,
this
.
lanArray
[
0
]);
localStorage
.
setItem
(
'lanArray'
,
JSON
.
stringify
(
this
.
lanArray
))
;
// 提示框
if
(
this
.
lanArray
[
0
]
===
"ZH-CN"
)
{
this
.
$notice
.
success
(
'已切换为中文!'
);
}
else
if
(
this
.
lanArray
[
0
]
===
"EN-US"
){
this
.
$notice
.
success
(
'已切换为英文!'
);
}
Object
.
keys
(
this
.
data
).
forEach
((
items
:
any
)
=>
{
// 多语言处理
this
.
data
[
items
].
forEach
((
item
:
any
)
=>
{
if
(
item
.
entext
)
{
if
(
i18n
.
locale
==
"ZH-CN"
)
{
item
.
showtext
=
item
.
text
;
}
else
if
(
i18n
.
locale
==
"EN-US"
){
item
.
showtext
=
item
.
entext
;
}
}
})
});
this
.
$forceUpdate
();
}
/**
/**
* item点击事件
* item点击事件
*/
*/
...
@@ -264,6 +311,8 @@ export default class AppSetting extends Vue {
...
@@ -264,6 +311,8 @@ export default class AppSetting extends Vue {
this
.
logout
();
this
.
logout
();
}
else
if
(
item
.
name
==
"clear"
)
{
}
else
if
(
item
.
name
==
"clear"
)
{
this
.
clear
();
this
.
clear
();
}
else
if
(
item
.
name
==
"language"
){
this
.
changeLanguage
();
}
else
{
}
else
{
// 自定义功能
// 自定义功能
if
(
item
.
viewName
)
{
if
(
item
.
viewName
)
{
...
...
src/ibiz-core/components/app-setting/config.ts
浏览文件 @
f39cc903
...
@@ -6,6 +6,7 @@ export const settingConfig = {
...
@@ -6,6 +6,7 @@ export const settingConfig = {
text
:
"账号信息"
,
text
:
"账号信息"
,
position
:
"top"
,
position
:
"top"
,
sort
:
"100"
,
sort
:
"100"
,
entext
:
'Account information'
,
},
},
{
{
name
:
"mobilePhoneNumber"
,
name
:
"mobilePhoneNumber"
,
...
@@ -13,6 +14,7 @@ export const settingConfig = {
...
@@ -13,6 +14,7 @@ export const settingConfig = {
text
:
"手机号码"
,
text
:
"手机号码"
,
position
:
"top"
,
position
:
"top"
,
sort
:
"200"
,
sort
:
"200"
,
entext
:
'Cellphone number'
,
},
},
{
{
name
:
"theme"
,
name
:
"theme"
,
...
@@ -20,6 +22,7 @@ export const settingConfig = {
...
@@ -20,6 +22,7 @@ export const settingConfig = {
text
:
"主题"
,
text
:
"主题"
,
position
:
"top"
,
position
:
"top"
,
sort
:
"300"
,
sort
:
"300"
,
entext
:
'Theme'
,
},
},
{
{
name
:
"layoutStyle"
,
name
:
"layoutStyle"
,
...
@@ -28,6 +31,7 @@ export const settingConfig = {
...
@@ -28,6 +31,7 @@ export const settingConfig = {
position
:
"top"
,
position
:
"top"
,
sort
:
"400"
,
sort
:
"400"
,
viewName
:
"app-mob-select-changeStyle"
,
viewName
:
"app-mob-select-changeStyle"
,
entext
:
'Style'
,
},
},
{
{
name
:
"notification"
,
name
:
"notification"
,
...
@@ -35,6 +39,7 @@ export const settingConfig = {
...
@@ -35,6 +39,7 @@ export const settingConfig = {
text
:
"消息通知"
,
text
:
"消息通知"
,
position
:
"center"
,
position
:
"center"
,
sort
:
"100"
,
sort
:
"100"
,
entext
:
'Notification'
,
},
},
{
{
name
:
"privacy"
,
name
:
"privacy"
,
...
@@ -42,6 +47,7 @@ export const settingConfig = {
...
@@ -42,6 +47,7 @@ export const settingConfig = {
text
:
"隐私"
,
text
:
"隐私"
,
position
:
"center"
,
position
:
"center"
,
sort
:
"200"
,
sort
:
"200"
,
entext
:
'Privacy'
,
},
},
{
{
name
:
"universal"
,
name
:
"universal"
,
...
@@ -49,6 +55,7 @@ export const settingConfig = {
...
@@ -49,6 +55,7 @@ export const settingConfig = {
text
:
"通用"
,
text
:
"通用"
,
position
:
"center"
,
position
:
"center"
,
sort
:
"300"
,
sort
:
"300"
,
entext
:
'Universal'
,
},
},
{
{
name
:
"accessibility"
,
name
:
"accessibility"
,
...
@@ -56,6 +63,7 @@ export const settingConfig = {
...
@@ -56,6 +63,7 @@ export const settingConfig = {
text
:
"辅助功能"
,
text
:
"辅助功能"
,
position
:
"center"
,
position
:
"center"
,
sort
:
"400"
,
sort
:
"400"
,
entext
:
'Accessibility'
,
},
},
{
{
name
:
"about"
,
name
:
"about"
,
...
@@ -63,6 +71,8 @@ export const settingConfig = {
...
@@ -63,6 +71,8 @@ export const settingConfig = {
text
:
"关于"
,
text
:
"关于"
,
position
:
"center"
,
position
:
"center"
,
sort
:
"500"
,
sort
:
"500"
,
viewName
:
"app-update-log-list"
,
entext
:
'About'
,
},
},
{
{
name
:
"logout"
,
name
:
"logout"
,
...
@@ -70,6 +80,7 @@ export const settingConfig = {
...
@@ -70,6 +80,7 @@ export const settingConfig = {
text
:
"退出登录"
,
text
:
"退出登录"
,
position
:
"bottom"
,
position
:
"bottom"
,
sort
:
"100"
,
sort
:
"100"
,
entext
:
'Sign out'
,
},
},
{
{
name
:
"clear"
,
name
:
"clear"
,
...
@@ -77,6 +88,15 @@ export const settingConfig = {
...
@@ -77,6 +88,15 @@ export const settingConfig = {
text
:
"清除缓存"
,
text
:
"清除缓存"
,
position
:
"bottom"
,
position
:
"bottom"
,
sort
:
"200"
,
sort
:
"200"
,
entext
:
'Clear cache'
,
},
{
name
:
"language"
,
isEnable
:
true
,
text
:
"切换语言"
,
position
:
"bottom"
,
sort
:
"200"
,
entext
:
'Switch language'
,
},
},
],
],
// 个人中心视图(需用户手动配置)
// 个人中心视图(需用户手动配置)
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录