提交 7aed245c 编写于 作者: KK's avatar KK

setting组件调整

上级 81453e04
export const settingConfig = { export const settingConfig = {
// 账号信息 default: [
accountInformation:true, {
// 用户实体参数名称 name: "accountInformation",
userEntityName:"user", isEnable: true,
text: "账号信息",
position: "top",
sort: "100",
},
{
name: "mobilePhoneNumber",
isEnable: true,
text: "手机号码",
position: "top",
sort: "200",
},
{
name: "theme",
isEnable: true,
text: "主题",
position: "top",
sort: "300",
},
{
name: "layoutStyle",
isEnable: true,
text: "风格",
position: "top",
sort: "400",
viewName: "app-mob-select-changeStyle",
},
{
name: "notification",
isEnable: true,
text: "消息通知",
position: "center",
sort: "100",
},
{
name: "privacy",
isEnable: true,
text: "隐私",
position: "center",
sort: "200",
},
{
name: "universal",
isEnable: true,
text: "通用",
position: "center",
sort: "300",
},
{
name: "accessibility",
isEnable: true,
text: "辅助功能",
position: "center",
sort: "400",
},
{
name: "about",
isEnable: true,
text: "关于",
position: "center",
sort: "500",
},
{
name: "logout",
isEnable: true,
text: "退出登录",
position: "bottom",
sort: "100",
},
{
name: "clear",
isEnable: true,
text: "清除缓存",
position: "bottom",
sort: "200",
},
],
// 个人中心视图(需用户手动配置) // 个人中心视图(需用户手动配置)
userCenterViewName:"", userCenterViewName: "",
// 手机号码 // 用户实体参数名称
mobilePhoneNumber:true, userEntityName: "user",
// 主题 // 自定义功能
theme:true, userCustomize: [
// 风格 // {
layoutStyle:true, // 名称(不可重复)
// 消息通知 // name: "test",
notification:true, // 是否启用
// 隐私 // isEnable: true,
privacy:true, // 显示文本
// 通用 // text: "test",
Universal:true, // // 板块位置(内置为三个板块,分别为 top、center、bottom)
// 辅助功能 // position: "center",
accessibility:true, // // 板块排序(与其他item的排序位置)
// 关于 // sort: "201",
about:true, // 打开视图名称
// 退出登录 // viewName: "",
logout:true, // },
// 清除缓存 ],
clear:true
}; };
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册