uniapp 사용자 정의 위쪽 탐색 그리기

2086 단어 uniapp
startCreateView() {
				var me = this;
				me.titleTimer = setTimeout(function() {
					me.createView();
				}, 100); //   
			},
			createView() {
				clearTimeout(this.titleTimer);
				var webView = this.$mp.page.$getAppWebview();
				var nTitle = webView.getTitleNView();
				nTitle.draw(
					[{
							"tag": "rect",
							"id": "rect",
							"color": "#f1f2f3",
							"position": {
								"left": "12px",
								"right": "55px",
								"top": "7px",
								"bottom": "7px"
							},
							"rectStyles": {
								"color": "#f1f2f3",
								"radius": "5px",
								"borderColor": "#999"
							}
						},
						{
							"tag": "img",
							"id": "img",
							"src": "/static/index/icon_search.png",
							"position": {
								"left": "20px",
								"width": "14px",
								"height": "14px",
								"top": "15px",
							}
						},
						{
							"tag": "input",
							"id": "input",
							"position": {
								"left": "42px",
								"right": "70px",
								"top": "8px",
								"bottom": "7px"
							},
							"inputStyles": {
								"placeholder": " 、 、 、 ",
								"borderRadius": "5px",
								"borderWidth": "0px",
								"fontSize": "14px",
								"type": "search",
								"color": "#999999",
								onComplete: function(e) {
									console.log(' ')
								},
								onFocus: function(e) {
									console.log(' ')
								},
								onBlur: function(e) {
									console.log(' ')
								}
							}
						}
					]
				);
				nTitle.setInputFocusById("input", true);
			},

좋은 웹페이지 즐겨찾기