.wxml文件
需要在< view >标签内加入image,同时需要把image放到第一个的位置,应该是顺序会影响层数
<view class="backImage">
<image src="https://gimg2.baidu.com/image_search/src=http%3A%2F%2Finews.gtimg.com%2Fnewsapp_match%2F0%2F2076168857%2F0.jpg&refer=http%3A%2F%2Finews.gtimg.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1615381312&t=f1672d45beed0b28210e0eb2c171d3e7" class="beijing" ></image>
...
</view>
.wxss文件
需要把image属性设置为z-index: -1,目的是为了把image标签设置到底层
.beijing{
position: fixed;
width: 100%;
height: 100%;
z-index: -1;
}
效果如图: