日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網站首頁 編程語言 正文

uni-app 自定義導航欄 圖片按鈕

作者:前端學習007 更新時間: 2022-02-12 編程語言

在這里插入圖片描述
按鈕據右邊邊框距離設置:

	document.getElementsByClassName('uni-btn-icon')[2].style.marginRight = '22px'

監聽按鈕狀態:

	onNavigationBarButtonTap(e) {
			if (e.index === 1|| e.index === 2) {
				this.isfilter = !this.isfilter
				if (this.isfilter == false) {
					document.getElementsByClassName('uni-btn-icon')[3].innerText = '篩選';
					document.getElementsByClassName('uni-btn-icon')[2].style.color = '#333333'
					document.getElementsByClassName('uni-btn-icon')[3].style.color = '#333333'
				} else {
					document.getElementsByClassName('uni-btn-icon')[3].innerText = '已篩選';
					document.getElementsByClassName('uni-btn-icon')[2].style.color = '#E86951'
					document.getElementsByClassName('uni-btn-icon')[3].style.color = '#E86951'
				}
			}else if(e.index == 0){
				uni.switchTab({
					url
				})
			}
			
		}

page.json

	"app-plus": {
		"titleNView": {
				"titleColor": "#333333",
				"backgroundColor": "#FFFFFF",
				"buttons": [{
					"type":"back",
					"fontSize": "27px",
					"float": "left"
				},
			    {
					"fontSrc": "/static/iconfont/iconfont.ttf",
					"text": "\ue732",
					"fontSize": "27px",
					"margin":"30upx",
					"width":"auto"
				},{
					"text": "篩選",
					"fontSize": "14px",
					"width":"auto"
				}]
			}
		}

在這里插入圖片描述

原文鏈接:https://blog.csdn.net/weixin_44433499/article/details/115204348

欄目分類
最近更新