微信小程序中的button默认样式有圆角
如果是直接设置style:
<button style="height: 60rpx;width: 150rpx;background: #FFFFFF;border-radius: 0;">
<text>申请退款</text>
</button>
然而,并没有什么卵用。。。
后来发现,微信小程序中的button的border属性或者圆角,都是卸载after里面的,所以呢,这样改
button::after {
border-radius: 0;
}
注意
原来按钮上的border-radius: 0;继续保留的;
这样就能把button的圆角去掉了