[uniapp] Uncommon functions in uniapp:


1. Set the opening page to automatically go to the bottom

insert image description here

onLoad() {
    
    
	uni.pageScrollTo({
    
    
		scrollTop: 999999,
		duration: 0
	})
},
2. Jump to other web pages (such as Baidu)
<web-view :src="url"></web-view>

insert image description here

3. Enter on the mobile phone keyboard

@confirm='loginFunM()'// The login method called by loginFunM()

insert image description here

4. Implementation of uniapp mask layer and prohibition of page scrolling

insert image description here
insert image description here

@touchmove.stop.prevent
或者
catchtouchmove="true"

Guess you like

Origin blog.csdn.net/weixin_53791978/article/details/128077164