小程序button改写禁用样式
// !important 要加
<button class="btn" :disabled="disabled"></button>
.btn[disabled]{
color: #fff !important;
background: #434343 !important;
}
接口返回的字符串含有\n,小程序text组件不能换行
手动处理字符串以\n分割,
// text='你好\n 再见'
<view v-for="(item,index) in tipTxt" :key="index">{{item}}</view>
this.tipTxt = text.split("\\n")
swiper-item
上面直接加事件不触发,需要包一层view
uniapp
编译支付宝小程序不支持v-show
使用border和图片之间有间隙,
解决方法:div一个完整的圆,图片居中显示
微信支付宝小程序都不支持 /deep/选择器
小程序弹窗禁止背景滚动。注:支付宝无法禁止背景滚动
// @touchmove.stop.prevent @catchtouchmove catchtouchmove="true"都可以
<view class="dialog-common-box" v-if="isShow" @touchmove.stop.prevent @catchtouchmove>
<view class="dialog-common-body">
// 弹窗内容
</view>
</view>
支付宝小程序软键盘的一些坑
在用uniapp开发支付宝小程序时候发现只要页面有输入框当输入框获取焦点软键盘弹起时会造成整体页面被挤下去一个头部的高度,不太清楚什么原因,最后把整个页面最外层元素设置为fixed定位才完美解决,在小支付宝小程序中因为没有最外层page包裹所以我自行给页面最外层元素设置高度为100vh不然真机上会出现高度塌陷
并且 添加cursor-spacing 属性