您可以使用 Flex 布局将 u-image
上下左右居中显示。请将代码修改如下:
<view class="flex w-full justify-center items-center">
<u-image :src="item.image" width="82" height="82" class="flex-none" style="border-radius: 50%; border: 1px solid #000; background-color: white; width: 100px; height: 100px;" />
<view class="ml-[14rpx] flex flex-col justify-around min-w-0">
<view class="font-medium text-[30rpx]">{{ item.name }}</view>
<view class="text-[24rpx] text-[#666666] truncate">{{ item.tips }}</view>
</view>
</view>
这样就可以实现 u-image
在父容器中上下左右居中显示。