Construction of the uni-app project 1

Construction of the uni-app project 1

01: Create a project + modify the title of the project

  • insert image description here
  • Modify the title pages.json
{
    
    
	"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
		{
    
    
			"path": "pages/index/index"
		}
	],
	"globalStyle": {
    
    
		"navigationBarTextStyle": "white",
		"navigationBarTitleText": "xzl-商场",
		"navigationBarBackgroundColor": "#b50e03",
		"backgroundColor": "#F8F8F8"
	}
}

  • Effect
    insert image description here

02: Configuration of the bottom tabbar

pages.json

{
    
    
	"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
		{
    
    
			"path": "pages/index/index"
		}
	  ,{
    
    
            "path" : "pages/cart/cart"
        }
        ,{
    
    
            "path" : "pages/member/member"
        }
        ,{
    
    
            "path" : "pages/news/news"
        }
    ],
	"globalStyle": {
    
    
		"navigationBarTextStyle": "white",
		"navigationBarTitleText": "xzl-商场",
		"navigationBarBackgroundColor": "#b50e03",
		"backgroundColor": "#F8F8F8"
	},
	"tabBar":{
    
    
		"selectedColor":"#b50e03",
			"list":[
				{
    
    
					"text":"首页",
					"pagePath":"pages/index/index",
					"iconPath":"static/icon/home.png",
					"selectedIconPath":"static/icon/home-active.png"
				},
				{
    
    
					"text":"新闻",
					"pagePath":"pages/news/news",
					"iconPath":"static/icon/news.png",
					"selectedIconPath":"static/icon/news-active.png"
				},
				{
    
    
					"text":"购物车",
					"pagePath":"pages/cart/cart",
					"iconPath":"./static/icon/cart.png",
					"selectedIconPath":"static/icon/cart-active.png"
				},
				{
    
    
					"text":"会员",
					"pagePath":"pages/member/member",
					"iconPath":"static/icon/member.png",
					"selectedIconPath":"static/icon/member-active.png"
				}
			]
		}
}

  • Effect
    insert image description here

Guess you like

Origin blog.csdn.net/weixin_43845137/article/details/124258268