feat: 新增运营活动的进度条显示

This commit is contained in:
zerosaturation 2026-06-03 01:16:20 +08:00
parent 463e6cc008
commit feb98dd865
4 changed files with 5 additions and 5 deletions

View File

@ -544,7 +544,7 @@ export default {
bottom: 192rpx;
left: 0;
right: 0;
height: 544rpx;
height: 1024rpx;
padding: 20rpx;
z-index: 15;
box-sizing: border-box;
@ -638,6 +638,7 @@ export default {
display: flex;
align-items: center;
padding: 48rpx 24rpx;
padding-bottom: calc(48rpx + env(safe-area-inset-bottom));
background: rgba(249, 200, 217, 0.5);
border-top: 4rpx solid #ff9de2;
border-radius: 50rpx 50rpx 0 0;

View File

@ -525,7 +525,7 @@ onUnmounted(() => {
width: 100%;
height: 100vh;
/* margin-top: 160rpx; */
padding: 240rpx 24rpx 0;
padding: 208rpx 24rpx 0;
box-sizing: border-box;
}
@ -639,7 +639,7 @@ onUnmounted(() => {
/* 热门分类区块 */
.hot-category-wrapper {
position: relative;
padding-bottom: 64rpx;
padding-bottom: 80rpx;
}
.hot-more-btn {

View File

@ -78,7 +78,7 @@ watch(() => props.target, (v) => {
<style scoped>
.v-progress {
position: fixed;
left: 24rpx;
right: 24rpx;
top: 50%;
transform: translateY(-50%);
z-index: 50;

View File

@ -23,7 +23,6 @@
<!-- 竖向进度条fixed 定位左侧 -->
<VerticalProgressBar
v-if="progressData.target > 0"
:current="progressData.current"
:target="progressData.target"
/>