结论:在image的父盒子中加上display: flex,原因不清楚
出问题的代码和图片如下:
<template>
	<view style=" background-color: greenyellow; height: 10rpx;width: 10rpx;">
		<image :src="imgSrc.seatnull"  style="width: 100%; height: 100%; background-color: aqua;"> </image>
	</view>
</template>
当父盒子的大小过小,就出现了图片和父盒子偏离的情况
解决方法,使父盒子变为弹性盒子就可以解决
	<view style=" background-color: greenyellow; height: 10rpx;width: 10rpx;display: flex;">
		<image :src="imgSrc.seatnull"  style="width: 100%; height: 100%; background-color: aqua;"> </image>
	</view>




![C++ - char*、const char*、char[]、string](https://i-blog.csdnimg.cn/direct/001314dcd96147169e9554542c286abe.png)

![[Vulnhub] Raven2 PHPMailer-RCE+MSQP:Mysql权限提升](https://img-blog.csdnimg.cn/img_convert/58ce9dd1b47cb57816af2d521b6076ec.jpeg)












