33 lines
871 B
TypeScript
33 lines
871 B
TypeScript
export const APP_ROUTES = {
|
|
home: "/pages/index/index",
|
|
mailbox: "/pages/mailbox/index",
|
|
mine: "/pages/mine/index",
|
|
sending: "/pages/sending/index",
|
|
manual: "/pages/manual/index",
|
|
calling: "/pages/calling/index",
|
|
planning: "/pages/planning/index",
|
|
planned: "/pages/planning/planned",
|
|
reply: "/pages/reply/index",
|
|
} as const;
|
|
|
|
export const TAB_BAR_ITEMS = [
|
|
{
|
|
pagePath: "pages/index/index",
|
|
text: "写信",
|
|
iconPath: "static/images/send.png",
|
|
selectedIconPath: "static/images/send-active.png",
|
|
},
|
|
{
|
|
pagePath: "pages/mailbox/index",
|
|
text: "信箱",
|
|
iconPath: "static/images/mailbox.png",
|
|
selectedIconPath: "static/images/mailbox-active.png",
|
|
},
|
|
{
|
|
pagePath: "pages/mine/index",
|
|
text: "我的",
|
|
iconPath: "static/images/mine.png",
|
|
selectedIconPath: "static/images/mine-active.png",
|
|
},
|
|
] as const;
|