From 6b7f684ac01156e15cc8aec66639dec01a7c49a5 Mon Sep 17 00:00:00 2001 From: pqsw9iynf <1052350599@qq.com> Date: Sun, 30 May 2021 21:53:29 +0800 Subject: [PATCH] app.json --- app.json | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..c14d8ca --- /dev/null +++ b/app.json @@ -0,0 +1,59 @@ +{ + "pages":[ + "pages/index/index", + "pages/category/index", + "pages/goods_list/index", + "pages/goods_detail/index", + "pages/cart/index", + "pages/collect/index", + "pages/order/index", + "pages/search/index", + "pages/user/index", + "pages/feedback/index", + "pages/login/index", + "pages/auth/index", + "pages/pay/index" + ], + "window":{ + "backgroundTextStyle": "light", + "navigationBarBackgroundColor": "#eb4450", + "navigationBarTitleText": "黑马优购", + "navigationBarTextStyle": "white" + }, + "tabBar": { + "color": "#999", + "selectedColor": "#ff2d4a", + "backgroundColor": "#fafafa", + "position": "bottom", + "borderStyle": "black", + "list": [ + { + "pagePath": "pages/index/index", + "text": "首页", + "iconPath": "icons/home.png", + "selectedIconPath": "icons/home-o.png" + }, + { + "pagePath": "pages/category/index", + "text": "分类", + "iconPath": "icons/category.png", + "selectedIconPath": "icons/category-o.png" + } + , + { + "pagePath": "pages/cart/index", + "text": "购物车", + "iconPath": "icons/cart.png", + "selectedIconPath": "icons/cart-o.png" + } + , + { + "pagePath": "pages/user/index", + "text": "我的", + "iconPath": "icons/my.png", + "selectedIconPath": "icons/my-o.png" + } + ] + }, + "sitemapLocation": "sitemap.json" +}