32 lines
633 B
TypeScript
32 lines
633 B
TypeScript
export default defineAppConfig({
|
|
pages: [
|
|
"pages/index/index",
|
|
"pages/user/index",
|
|
"pages/cpage/index"
|
|
],
|
|
tabBar: {
|
|
custom: true,
|
|
list: [
|
|
{
|
|
pagePath: "pages/index/index",
|
|
text: "首页",
|
|
},
|
|
{
|
|
pagePath: "pages/cpage/index",
|
|
text: "自定义页面",
|
|
},
|
|
{
|
|
pagePath: "pages/user/index",
|
|
text: "我的",
|
|
},
|
|
],
|
|
},
|
|
window: {
|
|
backgroundTextStyle: "light",
|
|
navigationBarBackgroundColor: "#fff",
|
|
navigationBarTitleText: "积客名片",
|
|
navigationBarTextStyle: "white",
|
|
navigationStyle: "custom",
|
|
},
|
|
});
|