APP:
// 通过 page.json 来设置页面背景颜色
{
"path" : "pages/9.templates/shop/coupons",
"style" :
{
"navigationBarTitleText": "优惠券组件",
"app-plus" : {
"background":"#F8F8F8"
}
}
}
H5和小程序端:
<style>
/* #ifdef MP-WEIXIN */
page{background:#F8F8F8;}
/* #endif */
/* #ifdef H5 */
.page-bg{min-height:100vh; background-color:#F8F8F8;}
/* #endif */
</style>