- 新增个人中心页面,包含用户信息展示、头像上传、登录/退出功能 - 更新路由配置和底部导航栏以支持个人中心页面 - 修改登录跳转路径从'/pages/common/login/index'到'/pages/login/login' - 在cSpell字典中添加'chooseavatar'单词 - 更新tsconfig.json包含package.json文件
122 lines
2.8 KiB
JSON
122 lines
2.8 KiB
JSON
{
|
|
"globalStyle": {
|
|
"navigationStyle": "default",
|
|
"navigationBarTitleText": "unibest",
|
|
"navigationBarBackgroundColor": "#f8f8f8",
|
|
"navigationBarTextStyle": "black",
|
|
"backgroundColor": "#FFFFFF"
|
|
},
|
|
"easycom": {
|
|
"autoscan": true,
|
|
"custom": {
|
|
"^fg-(.*)": "@/components/fg-$1/fg-$1.vue",
|
|
"^wd-(.*)": "wot-design-uni/components/wd-$1/wd-$1.vue",
|
|
"^(?!z-paging-refresh|z-paging-load-more)z-paging(.*)": "z-paging/components/z-paging$1/z-paging$1.vue"
|
|
}
|
|
},
|
|
"tabBar": {
|
|
"custom": false,
|
|
"color": "#999999",
|
|
"selectedColor": "#018d71",
|
|
"backgroundColor": "#F8F8F8",
|
|
"borderStyle": "black",
|
|
"height": "50px",
|
|
"fontSize": "10px",
|
|
"iconWidth": "24px",
|
|
"spacing": "3px",
|
|
"list": [
|
|
{
|
|
"iconPath": "static/tabbar/home.png",
|
|
"selectedIconPath": "static/tabbar/homeHL.png",
|
|
"pagePath": "pages/index/index",
|
|
"text": "首页"
|
|
},
|
|
{
|
|
"iconPath": "static/tabbar/example.png",
|
|
"selectedIconPath": "static/tabbar/exampleHL.png",
|
|
"pagePath": "pages/about/about",
|
|
"text": "关于"
|
|
},
|
|
{
|
|
"iconPath": "static/tabbar/personal.png",
|
|
"selectedIconPath": "static/tabbar/personalHL.png",
|
|
"pagePath": "pages/me/me",
|
|
"text": "个人"
|
|
}
|
|
]
|
|
},
|
|
"pages": [
|
|
{
|
|
"path": "pages/index/index",
|
|
"type": "home",
|
|
"layout": "tabbar",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "首页"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/about/about",
|
|
"type": "page",
|
|
"layout": "tabbar",
|
|
"style": {
|
|
"navigationBarTitleText": "关于"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/about/alova",
|
|
"type": "page",
|
|
"layout": "default",
|
|
"style": {
|
|
"navigationBarTitleText": "Alova 请求演示"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/about/vue-query",
|
|
"type": "page",
|
|
"layout": "default",
|
|
"style": {
|
|
"navigationBarTitleText": "Vue Query 请求演示"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/login/login",
|
|
"type": "page",
|
|
"layout": "default",
|
|
"style": {
|
|
"navigationBarTitleText": "登录"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/login/register",
|
|
"type": "page",
|
|
"layout": "default",
|
|
"style": {
|
|
"navigationBarTitleText": "注册"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/me/me",
|
|
"type": "page",
|
|
"style": {
|
|
"navigationBarTitleText": "我的"
|
|
}
|
|
}
|
|
],
|
|
"subPackages": [
|
|
{
|
|
"root": "pages-sub",
|
|
"pages": [
|
|
{
|
|
"path": "demo/index",
|
|
"type": "page",
|
|
"layout": "default",
|
|
"style": {
|
|
"navigationBarTitleText": "分包页面"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|