首页 > 其他分享 >在uniapp中,定义导航栏左侧,右侧按钮

在uniapp中,定义导航栏左侧,右侧按钮

时间:2023-02-28 20:33:06浏览次数:42  
标签:uniapp 右侧 app buttons 按钮 true pages

 

 

 

 在page.json中

 

 代码:

{
"path": "pages/pandian",
    "style": {
        "navigationBarTitleText": "资产盘点",
        "navigationBarBackgroundColor": "#4076F4",
      "navigationBarTextStyle": "white",
      "app-plus": {
          "titleNView": {
          "autoBackButton": true,
          "buttons": [{
              "text": "提交",
              "color": "#fff",
              "fontSize": "16px",
              "width": "60px"
            }]
          }
        },
    //开启下拉刷新
    "enablePullDownRefresh": true
    }
},                        

 

 

 

 

官网地址: https://uniapp.dcloud.net.cn/collocation/pages.html#app-titlenview-buttons

标签:uniapp,右侧,app,buttons,按钮,true,pages
From: https://www.cnblogs.com/changshu/p/17165883.html

相关文章