tabbar
@ -6,7 +6,25 @@
|
||||
{
|
||||
"path": "pages/index/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "uni-app"
|
||||
"navigationBarTitleText": "首页"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/category/category",
|
||||
"style": {
|
||||
"navigationBarTitleText": "分类"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/cart/cart",
|
||||
"style": {
|
||||
"navigationBarTitleText": "购物车"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/my/my",
|
||||
"style": {
|
||||
"navigationBarTitleText": "我的"
|
||||
}
|
||||
}
|
||||
],
|
||||
@ -15,5 +33,35 @@
|
||||
"navigationBarTitleText": "uni-app",
|
||||
"navigationBarBackgroundColor": "#F8F8F8",
|
||||
"backgroundColor": "#F8F8F8"
|
||||
},
|
||||
"tabBar": {
|
||||
"color": "#7A7E83",
|
||||
"selectedColor": "#3cc51f",
|
||||
"borderStyle": "black",
|
||||
"backgroundColor": "#ffffff",
|
||||
"list": [{
|
||||
"pagePath": "pages/index/index",
|
||||
"iconPath": "static/icons/home.png",
|
||||
"selectedIconPath": "static/icons/home-o.png",
|
||||
"text": "首页"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/category/category",
|
||||
"iconPath": "static/icons/order.png",
|
||||
"selectedIconPath": "static/icons/order-o.png",
|
||||
"text": "分类"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/cart/cart",
|
||||
"iconPath": "static/icons/cart.png",
|
||||
"selectedIconPath": "static/icons/cart-o.png",
|
||||
"text": "购物车"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/my/my",
|
||||
"iconPath": "static/icons/user.png",
|
||||
"selectedIconPath": "static/icons/user-o.png",
|
||||
"text": "我的"
|
||||
}]
|
||||
}
|
||||
}
|
||||
|
13
src/pages/cart/cart.vue
Normal file
@ -0,0 +1,13 @@
|
||||
<template>
|
||||
<view>cart</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
15
src/pages/category/category.vue
Normal file
@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<view>
|
||||
category
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
13
src/pages/my/my.vue
Normal file
@ -0,0 +1,13 @@
|
||||
<template>
|
||||
<view>my</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
BIN
src/static/icons/cart-o.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
src/static/icons/cart.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
src/static/icons/home-o.png
Normal file
After Width: | Height: | Size: 1013 B |
BIN
src/static/icons/home.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
src/static/icons/more-o.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
src/static/icons/more.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
src/static/icons/order-o.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
src/static/icons/order.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
src/static/icons/user-o.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
src/static/icons/user.png
Normal file
After Width: | Height: | Size: 3.4 KiB |