样式调整
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 12s
Docker Build & Deploy / Deploy to Production (push) Successful in 6s

This commit is contained in:
2025-12-27 21:15:26 +08:00
parent 1192bdb46f
commit e11603caec
11 changed files with 131 additions and 92 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="page-container">
<div class="page-container-flex">
<!-- 顶部导航栏 -->
<van-nav-bar title="邮件记录" placeholder>
<template #right>
@@ -15,7 +15,7 @@
</van-nav-bar>
<!-- 下拉刷新区域 -->
<van-pull-refresh v-model="refreshing" @refresh="onRefresh" class="refresh-wrapper">
<van-pull-refresh v-model="refreshing" @refresh="onRefresh">
<!-- 加载提示 -->
<van-loading v-if="loading && !(emailList && emailList.length)" vertical style="padding: 50px 0">
加载中...
@@ -417,6 +417,13 @@ onMounted(() => {
</script>
<style scoped>
:deep(.van-pull-refresh) {
flex: 1;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.email-info {
display: flex;
flex-direction: column;