| 12345678910111213141516171819202122232425262728293031323334 |
- export default defineAppConfig({
- pages: ["pages/home/index", "pages/temp/index"],
- subpackages: [
- {
- root: "subModule",
- pages: [
- "pages/shopmall/index",
- "pages/feedback/index",
- "pages/order/index",
- "pages/iframe/index",
- "pages/portrait-iframe/index",
- ],
- },
- ],
- window: {
- backgroundTextStyle: "light",
- navigationBarBackgroundColor: "#fff",
- navigationBarTitleText: "锡善云城",
- navigationBarTextStyle: "black",
- },
- tabBar: {
- list: [
- {
- pagePath: "pages/home/index",
- text: "首页",
- },
- {
- pagePath: "pages/temp/index",
- text: "",
- },
- ],
- custom: true,
- },
- });
|