Files
trade-assistant/uni-app/src/pages.json
T
TradeMate Dev b71b7e6cdf Fix desktop responsive layout: sidebar, content sizing, remove duplicate tab bar
- Replace uni-app custom-tab-bar with manual NavBar component in App.vue
  (uni-app auto-detection was not including component in build)
- Mobile: NavBar hidden via CSS display:none, uni-app default tab bar handles nav
- Desktop: NavBar visible as 220px left sidebar, uni-app tab bar hidden
- Content area: max-width 1200px with margin-left:220px, centered
- Buttons/inputs/cards: global desktop CSS overrides for reasonable sizing
- Clean approach: NavBar always in DOM, CSS media queries control visibility
  (no v-if, no conflicting !important)
2026-05-21 10:10:11 +08:00

141 lines
2.9 KiB
JSON

{
"pages": [
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "外贸小助手"
}
},
{
"path": "pages/translate/translate",
"style": {
"navigationBarTitleText": "智能翻译"
}
},
{
"path": "pages/customers/customers",
"style": {
"navigationBarTitleText": "客户管理"
}
},
{
"path": "pages/marketing/marketing",
"style": {
"navigationBarTitleText": "营销素材"
}
},
{
"path": "pages/quotation/quotation",
"style": {
"navigationBarTitleText": "报价单"
}
},
{
"path": "pages/login/login",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "登录"
}
},
{
"path": "pages/product/product",
"style": {
"navigationBarTitleText": "产品库"
}
},
{
"path": "pages/admin/admin",
"style": {
"navigationBarTitleText": "管理后台"
}
},
{
"path": "pages/analytics/analytics",
"style": {
"navigationBarTitleText": "数据分析"
}
},
{
"path": "pages/team/team",
"style": {
"navigationBarTitleText": "团队协作"
}
},
{
"path": "pages/agreement/privacy",
"style": {
"navigationBarTitleText": "隐私政策"
}
},
{
"path": "pages/agreement/terms",
"style": {
"navigationBarTitleText": "用户协议"
}
},
{
"path": "pages/notification/notification",
"style": {
"navigationBarTitleText": "通知中心"
}
},
{
"path": "pages/feedback/feedback",
"style": {
"navigationBarTitleText": "意见反馈"
}
},
{
"path": "pages/upgrade/upgrade",
"style": {
"navigationBarTitleText": "升级会员"
}
},
{
"path": "pages/followup/followup",
"style": {
"navigationBarTitleText": "智能跟进"
}
},
{
"path": "pages/profile/profile",
"style": {
"navigationBarTitleText": "个人中心"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "外贸小助手",
"navigationBarBackgroundColor": "#1890ff",
"backgroundColor": "#f5f5f5"
},
"tabBar": {
"custom": false,
"color": "#666666",
"selectedColor": "#1890ff",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页"
},
{
"pagePath": "pages/customers/customers",
"text": "客户"
},
{
"pagePath": "pages/marketing/marketing",
"text": "营销"
},
{
"pagePath": "pages/quotation/quotation",
"text": "报价"
},
{
"pagePath": "pages/profile/profile",
"text": "我的"
}
]
}
}