美文网首页
uniapp 中间按钮凸出

uniapp 中间按钮凸出

作者: 配角_2763 | 来源:发表于2023-08-18 20:19 被阅读0次
    微信截图_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',
        });
    }) 
    

    相关文章

      网友评论

          本文标题:uniapp 中间按钮凸出

          本文链接:https://www.haomeiwen.com/subject/gkpdmdtx.html