uni-app 자주 사용하는 설정

5843 단어 uni-app

uni-app 원본 내비게이션 사용자 정의 단추 스타일 수정

setTitleNViewButtonStyle:function(){
  this.btnStatus = !this.btnStatus;
	// #ifdef APP-PLUS
	var webView = this.$mp.page.$getAppWebview();
	webView.setTitleNViewButtonStyle(0, {  
		text: this.btnStatus ?' ':' ', 
		color:this.btnStatus ?'#479dfd':'#ce2a21'
	}); 
	// #endif		
},

uni-appios 사이드 슬라이딩 금지

"app-plus": {
	"popGesture": "none",//  ios 
	"bounce": "none",
	"titleNView": {
	"autoBackButton":"false",
	"backgroundColor": "#fff",
	"buttons": [{
		"text": " ",
		"fontSize": "16"
	  }
	]
  }
}

uni-app 하위 페이지로 이미지 전달

let detail = {
	author_name: e.author_name,
	cover: e.cover,
	id: e.id,
	ost_id: e.post_id,
	published_at: e.published_at,
	title: e.title
	};
uni.navigateTo({
url: '../../pageName?detailDate=' + encodeURIComponent(JSON.stringify(detail))
);

좋은 웹페이지 즐겨찾기