UNAPP 悬浮按钮-展开菜单点击跳转

首先在定义悬浮按钮展开菜单的点击事件,注意,不是@click

是:@trigger

<uni-fab ref="fab" :pattern="pattern" :horizontal="horizontal" :content="content" @fabClick="fabClick" @trigger="trigger" />   

然后定义事件:

第一个是弹出消息框

第二个是跳转其他页面,注意URL的写法。

e.index 是你点击的内容的索引

trigger(e) {
				console.log(e);
				// 让全部按钮false(解决选中后,其他按钮一直处于TRUE的状态)
				this.content.forEach(function(item) {
					item.active = false;
				})
				//让点击按钮TRUE
				e.item.active = true;
				switch (e.index) {
					case 0:
						uni.showToast({
							title: "你点击了我"
						})
						break;
					case 1:
						uni.navigateTo({
							url: "../last/last"
						})
						break;
				}
			}

DATA里定义其他变量的内容(参考)

data() {
			return {
				
				horizontal: "right",
				pattern: {
					color: '#7A7E83',
					backgroundColor: '#fff',
					selectedColor: '#007AFF',
					buttonColor: '#000000',
					iconColor: '#808080'
				},
				content: [{

						iconPath: '/static/image.png',
						selectedIconPath: '/static/image-active.png',
						text: '船长',
						active: false
					},
					{
						iconPath: '/static/home.png',
						selectedIconPath: '/static/home-active.png',
						text: '答案',
						active: false
					},
					{
						iconPath: '/static/star.png',
						selectedIconPath: '/static/star-active.png',
						text: '分享',
						active: false
					},
					{
						iconPath: '/static/star.png',
						selectedIconPath: '/static/star-active.png',
						text: '黑不溜秋',
						active: false
					}
				]
			}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值