feat;提交管理端和城市合伙人端

This commit is contained in:
ljy
2026-07-05 23:48:20 +08:00
parent fecfc61ec5
commit 569becedaa
73 changed files with 10150 additions and 80 deletions
+36
View File
@@ -0,0 +1,36 @@
export default defineAppConfig({
pages: [
'pages/dashboard/index',
'pages/stores/index',
'pages/settlement/index',
'pages/tickets/index',
'pages/login/index',
'pages/stores/detail',
'pages/orders/index',
'pages/orders/detail',
'pages/cities/index',
'pages/products/index',
'pages/reports/index',
'pages/refund/index',
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#A61D24',
navigationBarTitleText: '杜康好客·总部',
navigationBarTextStyle: 'white',
navigationStyle: 'custom',
},
tabBar: {
custom: true,
color: '#8D706E',
selectedColor: '#A61D24',
backgroundColor: '#FFFFFF',
borderStyle: 'black',
list: [
{ pagePath: 'pages/dashboard/index', text: '管理中心' },
{ pagePath: 'pages/stores/index', text: '门店审核' },
{ pagePath: 'pages/settlement/index', text: '结算中心' },
{ pagePath: 'pages/tickets/index', text: '客服中心' },
],
},
});