uniapp 中间按钮凸出

2023-08-18  本文已影响0人  配角_2763
微信截图_20230819201714.png

page.json 页面

"tabBar": {
        "color": "#000",
        "selectedColor": "#ff9e00",
        // "borderStyle" : "#eeeeee",
        "backgroundColor": "#fff",
        "list": [{
                "pagePath": "pages/index/index",
                "iconPath": "static/home.png",
                "selectedIconPath": "static/home1.png",
                "text": "首页"
            },
            
            {
                "pagePath": "pages/user/user",
                "iconPath": "static/Profile.png",
                "selectedIconPath": "static/Profile1.png",
                "text": "我的"
            }
            
        ],
        "midButton": {
            "width": "150rpx",
            "height": "150rpx",
            "text": "",
            "iconPath": "/static/mid.png",
            "iconWidth": "116rpx"
        }
    }

app.vue 页面


微信截图_20230819201933.png
uni.onTabBarMidButtonTap((e) => {
    uni.switchTab({ 
        url: '/pages/new/new',
    });
}) 
上一篇下一篇

猜你喜欢

热点阅读