收藏
回答

企业微信pc端小程序自定义tabbar无法切换图标改变颜色?

企业微信pc端:

企业微信移动端:

最后一次编辑于  2022-01-19
回答关注问题邀请回答
收藏

1 个回答

  • 戏子无情
    戏子无情
    2022-01-17

     getTabBar() {

        let that = this;

        return new Promise((resp, resj) => {

          that.fetch('system_style', {}, 'GET', (err, res) => {

            // console.log('颜色',res)

            wx.setTabBarStyle({ // 导航栏选中颜色

              selectedColor: res.data.data.color,

            })

            that.GlobalColor = res.data.data.color;

            res.data.data.url.forEach((item, index) => { // 导航栏选中图片

              wx.setTabBarItem({

                index: index,

                selectedIconPath: item

              })

            })

            resp(res.data.data.color)

          })

        })

      },

    这个是我app.js,每次点击tabbar,改变图标和颜色


    2022-01-17
    有用
    回复
登录 后发表内容