在h5页面可以显示,在android真机上无法显示,图片不大,只有不到8KB,本地图片,src路径相对路径、绝对路径都试过,h5上是好好的,HX 2.3.7.20191024
<template>
<view class="empty_view_layout">
<image class="empty_view_image" src="../static/empty_data2.png" mode="aspectFit"></image>
<text class="empty_view_text">暂无数据,请稍后重试~ </text>
</view>
</template>
<script>
export default {
}
</script>
<style>
.empty_view_layout{
width: 750upx;
height: 260px;
margin-top: 100px;
align-items: center;
}
.empty_view_image{
height: 120px;
}
.empty_view_text{
color: #A9A9A9;
font-size: 18px;
margin-top: 20px;
}
</style>
2***@qq.com (作者)
嗯嗯,问题已解决,用style设置宽高
2019-12-06 21:06