最近在uni-app使用vue3写项目时发现了一个upx失效了。

无效代码

<view class="pdx32 pdt32" style="height: 264upx;">
	<swiper indicator-dots autoplay>
		<swiper-item>
			<view>
				<image src="/static/image/background/banner-1.png" mode="aspectFill"></image>
			</view>
		</swiper-item>
	</swiper>
</view>

最终编译出来后upx竟然不会自动转换成rpx

解决办法 

直接不用upx了 直接换成rpx 

<view class="pdx32 pdt32" style="height: 264rpx;">
	<swiper indicator-dots autoplay>
		<swiper-item>
			<view>
				<image src="/static/image/background/banner-1.png" mode="aspectFill"></image>
			</view>
		</swiper-item>
	</swiper>
</view>

Logo

前往低代码交流专区

更多推荐