小程序
小游戏
企业微信
微信支付
扫描小程序码分享
底部这一块是页面渲染后超出屏幕范围的显示,就没有背景颜色了,请问这一块也可以设置背景颜色吗
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
backgroundColorTop和backgroundColorBottom,分别对应上部和下部分。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
上个代码片段吧,我试试看
<view class="setting">
<!-- 添加的菜品 -->
<image class="add_food_title" src="./../../images/add_food_title.png" mode="widthFix">
</image>
<view class="add_food_content">
<view class="content_add_text" wx:for="{{contentItems_add}}" wx:key='index' wx:for-item="items" >
<text>{{items.text}}</text>
<image class="image" bindtap="add_delet" data-id="{{index}}" src="./../../images/delet.png"></image>
</view>
<!-- 原来的菜品 -->
<view class="food">
<image class="food_title" src="./../../images/food_title.png" mode="widthFix">
<view class="settingrecover" bindtap='settingrecover'>
<image src="./../../images/recover.png" mode="widthFix"/>
<view class="food_content">
<view class="content_text" wx:for="{{contentItems}}" wx:key='index' wx:for-item="items" >
<image class="image" bindtap="delet" data-id="{{index}}" src="./../../images/delet.png"></image>
或 给 page 设置样式试试
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
backgroundColorTop和backgroundColorBottom,分别对应上部和下部分。
上个代码片段吧,我试试看
<view class="setting">
<!-- 添加的菜品 -->
<image class="add_food_title" src="./../../images/add_food_title.png" mode="widthFix">
</image>
<view class="add_food_content">
<view class="content_add_text" wx:for="{{contentItems_add}}" wx:key='index' wx:for-item="items" >
<text>{{items.text}}</text>
<image class="image" bindtap="add_delet" data-id="{{index}}" src="./../../images/delet.png"></image>
</view>
</view>
<!-- 原来的菜品 -->
<view class="food">
<image class="food_title" src="./../../images/food_title.png" mode="widthFix">
<view class="settingrecover" bindtap='settingrecover'>
<image src="./../../images/recover.png" mode="widthFix"/>
</view>
</image>
<view class="food_content">
<view class="content_text" wx:for="{{contentItems}}" wx:key='index' wx:for-item="items" >
<text>{{items.text}}</text>
<image class="image" bindtap="delet" data-id="{{index}}" src="./../../images/delet.png"></image>
</view>
</view>
</view>
</view>
https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
或 给 page 设置样式试试