[新增]企业店铺模块配置

This commit is contained in:
唐明明
2020-12-29 16:34:10 +08:00
parent c34a1d6021
commit 67dd6e617a
12 changed files with 184 additions and 100 deletions

13
lib/storeConfig.js Normal file
View File

@@ -0,0 +1,13 @@
/**
* Web唐明明
* 匆匆数载恍如梦,岁月迢迢华发增。
* 碌碌无为枉半生,一朝惊醒万事空。
*/
// 企业tabBar配置
const tabBar = []
export {
tabBar
}

View File

@@ -7,7 +7,7 @@
// 商城
const mall = {
"pagePath": "pages/mall/index",
"pagePath": "/pages/mall/index",
"text": "商城",
"iconPath": "/static/tabbar/tabbar_icon_01.png",
"selectedIconPath": "/static/tabbar/tabbar_icon_show_01.png"
@@ -15,7 +15,7 @@ const mall = {
// 短视频
const video = {
"pagePath": "pages/shortVideo/index",
"pagePath": "/pages/shortVideo/index",
"text": "首页",
"iconPath": "/static/tabbar/tabbar_icon_00.png",
"selectedIconPath": "/static/tabbar/tabbar_icon_show_00.png"
@@ -23,7 +23,7 @@ const video = {
// 优惠券
const ticket = {
"pagePath": "pages/ticket/index",
"pagePath": "/pages/ticket/index",
"text": "优惠",
"iconPath": "/static/tabbar/tabbar_icon_02.png",
"selectedIconPath": "/static/tabbar/tabbar_icon_show_02.png"
@@ -31,7 +31,7 @@ const ticket = {
// 我的
const user = {
"pagePath": "pages/user/index",
"pagePath": "/pages/user/index",
"text": "我的",
"iconPath": "/static/tabbar/tabbar_icon_03.png",
"selectedIconPath": "/static/tabbar/tabbar_icon_show_03.png"
@@ -43,4 +43,3 @@ export {
ticket,
user
}