uni 导航栏按钮点击触发事件

pages.json中:

{
            "path" : "pages/index/my/yqhy/yqhy",
            "style" : {
				"navigationBarTitleText": "邀请好友",
				"navigationBarTextStyle":"white",
				"navigationBarBackgroundColor":"#FE7837",
				"app-plus":{
					"titleNView": {
							"buttons": [ //这一段为按钮
								{
									"text": "排行榜", 
									"fontSize":"12",
									"float": "right"
								}
							]
						}
				}
				// "navigationStyle":"custom"
			}
        }

在这里插入图片描述
在yqhy.vue文件中

export default {
		data() {
			return {
				
			}
		},
		methods: {
			
		},
		onNavigationBarButtonTap(e) {//点击事件
			console.log("success")		
		}
	}

在这里插入图片描述

发布了48 篇原创文章 · 获赞 1 · 访问量 3815

猜你喜欢

转载自blog.csdn.net/qq_43840143/article/details/103634598