【缺陷修复】s-layout bgStyle 样式对齐

This commit is contained in:
puhui999
2024-12-09 15:05:44 +08:00
parent 8ac9f2714f
commit a863300ae3
14 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
<!-- 拼团活动列表 -->
<template>
<s-layout navbar="inner" :bgStyle="{ color: '#FE832A' }">
<s-layout :bgStyle="{ backgroundColor: '#FE832A' }" navbar="inner">
<view class="page-bg" :style="[{ marginTop: '-' + Number(statusBarHeight + 88) + 'rpx' }]" />
<view class="list-content">
<!-- 参团会员统计 -->
+2 -2
View File
@@ -1,6 +1,6 @@
<!-- 秒杀活动列表 -->
<template>
<s-layout navbar="inner" :bgStyle="{ color: 'rgb(245,28,19)' }">
<s-layout :bgStyle="{ backgroundColor: 'rgb(245,28,19)' }" navbar="inner">
<!--顶部背景图-->
<view
class="page-bg"
@@ -146,7 +146,7 @@
</s-layout>
</template>
<script setup>
import { reactive, computed, ref, nextTick } from 'vue';
import { computed, nextTick, reactive, ref } from 'vue';
import { onLoad, onReachBottom } from '@dcloudio/uni-app';
import sheep from '@/sheep';
import { useDurationTime } from '@/sheep/hooks/useGoods';