客户管理页面样式

This commit is contained in:
WindowBird 2025-11-07 17:41:03 +08:00
parent 4beb005515
commit 22823e520f

View File

@ -34,7 +34,12 @@
</view> </view>
<!-- 客户列表 --> <!-- 客户列表 -->
<scroll-view class="customer-list" scroll-y> <scroll-view
class="customer-list"
:class="{ 'with-filter': showFilter }"
scroll-y
>
<view style="padding-inline: 8px">
<view <view
class="customer-card" class="customer-card"
v-for="customer in filteredCustomers" v-for="customer in filteredCustomers"
@ -109,6 +114,7 @@
<view class="loading-state" v-if="loading"> <view class="loading-state" v-if="loading">
<text class="loading-text">加载中...</text> <text class="loading-text">加载中...</text>
</view> </view>
</view>
</scroll-view> </scroll-view>
<!-- 悬浮添加按钮 --> <!-- 悬浮添加按钮 -->
@ -315,7 +321,9 @@ onMounted(() => {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: 100%; height: 100%;
background-color: #f5f5f5; width: 100%;
background-color: #f5f7fa;
position: relative;
} }
/* 顶部标题栏 */ /* 顶部标题栏 */
@ -325,35 +333,48 @@ onMounted(() => {
justify-content: space-between; justify-content: space-between;
padding: 12px 16px; padding: 12px 16px;
background-color: #fff; background-color: #fff;
border-bottom: 1px solid #eee; border-bottom: 1px solid #e4e7ed;
position: sticky; position: fixed;
top: 0; top: 0;
right: 0;
left: 0;
z-index: 100; z-index: 100;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
} }
.header-title { .header-title {
font-size: 18px; font-size: 18px;
font-weight: 600; font-weight: 600;
color: #333; color: #303133;
letter-spacing: 0.5px;
} }
.filter-btn { .filter-btn {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 4px; gap: 6px;
padding: 4px 8px; padding: 6px 12px;
border-radius: 6px;
background-color: #f5f7fa;
transition: all 0.3s ease;
cursor: pointer; cursor: pointer;
&:active {
background-color: #e4e7ed;
transform: scale(0.95);
}
} }
.filter-text { .filter-text {
font-size: 14px; font-size: 14px;
color: #666; color: #606266;
font-weight: 500;
} }
.filter-icon { .filter-icon {
font-size: 12px; font-size: 12px;
color: #666; color: #909399;
transition: transform 0.3s; transition: transform 0.3s ease;
&.rotate { &.rotate {
transform: rotate(180deg); transform: rotate(180deg);
@ -363,131 +384,200 @@ onMounted(() => {
/* 筛选面板 */ /* 筛选面板 */
.filter-panel { .filter-panel {
background-color: #fff; background-color: #fff;
padding: 12px 16px; padding: 16px;
border-bottom: 1px solid #eee; border-bottom: 1px solid #e4e7ed;
position: fixed;
top: 52px;
right: 0;
left: 0;
z-index: 99;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
animation: slideDown 0.3s ease;
}
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
} }
.filter-item { .filter-item {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 12px; gap: 16px;
} }
.filter-label { .filter-label {
font-size: 14px; font-size: 14px;
color: #666; color: #606266;
flex-shrink: 0; flex-shrink: 0;
font-weight: 500;
} }
.filter-options { .filter-options {
display: flex; display: flex;
gap: 12px; gap: 10px;
flex-wrap: wrap; flex-wrap: wrap;
flex: 1;
} }
.filter-option { .filter-option {
padding: 4px 12px; padding: 6px 16px;
font-size: 14px; font-size: 14px;
color: #666; color: #606266;
background-color: #f5f5f5; background-color: #f5f7fa;
border-radius: 4px; border-radius: 20px;
transition: all 0.3s ease;
cursor: pointer;
border: 1px solid transparent;
&:active {
transform: scale(0.95);
}
&.active { &.active {
color: #1976d2; color: #2885ff;
background-color: #e3f2fd; background-color: #e6f2ff;
border-color: #2885ff;
font-weight: 500;
} }
} }
/* 客户列表 */ /* 客户列表 */
.customer-list { .customer-list {
flex: 1; flex: 1;
padding: 12px; padding-top: 52px;
padding-bottom: 80px; /* 为底部导航栏留出空间 */ padding-bottom: 100px; /* 为底部导航栏和悬浮按钮留出空间 */
background-color: #f5f7fa;
overflow-y: auto;
transition: padding-top 0.3s ease;
&.with-filter {
padding-top: 108px; /* header(52px) + filter panel(约56px) */
}
} }
.customer-card { .customer-card {
background-color: #fff; background-color: #fff;
border-radius: 8px; border-radius: 12px;
padding: 16px; padding: 16px;
margin-bottom: 12px; margin: 0 12px 12px 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
border: 1px solid #f0f0f0;
&:active {
transform: scale(0.98);
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}
&:last-child {
margin-bottom: 20px;
}
} }
.customer-header { .customer-header {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: flex-start; align-items: flex-start;
margin-bottom: 12px; margin-bottom: 14px;
padding-bottom: 12px;
border-bottom: 1px solid #f0f2f5;
} }
.customer-info { .customer-info {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 6px; gap: 8px;
flex: 1; flex: 1;
min-width: 0;
} }
.customer-name { .customer-name {
font-size: 16px; font-size: 16px;
font-weight: 600; font-weight: 600;
color: #333; color: #303133;
line-height: 1.4;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} }
.last-followup { .last-followup {
font-size: 12px; font-size: 12px;
color: #999; color: #909399;
line-height: 1.4;
} }
.status-indicator { .status-indicator {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 4px; gap: 6px;
flex-shrink: 0; flex-shrink: 0;
padding: 4px 10px;
background-color: #f5f7fa;
border-radius: 12px;
} }
.status-dot { .status-dot {
width: 8px; width: 8px;
height: 8px; height: 8px;
border-radius: 50%; border-radius: 50%;
flex-shrink: 0;
&.status-following { &.status-following {
background-color: #1976d2; background-color: #2885ff;
box-shadow: 0 0 4px rgba(40, 133, 255, 0.4);
} }
&.status-pending { &.status-pending {
background-color: #999; background-color: #909399;
} }
} }
.status-text { .status-text {
font-size: 12px; font-size: 12px;
color: #666; color: #606266;
font-weight: 500;
} }
/* 客户星级 */ /* 客户星级 */
.customer-rating { .customer-rating {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 8px; gap: 10px;
margin-bottom: 12px; margin-bottom: 14px;
padding: 8px 12px;
background-color: #fafbfc;
border-radius: 8px;
} }
.rating-label { .rating-label {
font-size: 14px; font-size: 13px;
color: #666; color: #606266;
font-weight: 500;
} }
.stars { .stars {
display: flex; display: flex;
gap: 2px; gap: 3px;
align-items: center;
} }
.star { .star {
font-size: 16px; font-size: 16px;
color: #ddd; color: #e4e7ed;
line-height: 1;
transition: color 0.2s ease;
&.filled { &.filled {
color: #999; color: #ffc107;
text-shadow: 0 0 2px rgba(255, 193, 7, 0.3);
} }
} }
@ -495,20 +585,26 @@ onMounted(() => {
.assigned-user { .assigned-user {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 8px; gap: 10px;
margin-bottom: 12px; margin-bottom: 14px;
padding: 8px 12px;
background-color: #fafbfc;
border-radius: 8px;
} }
.user-avatar { .user-avatar {
width: 24px; width: 28px;
height: 24px; height: 28px;
border-radius: 50%; border-radius: 50%;
background-color: #f0f0f0; background-color: #e4e7ed;
border: 2px solid #fff;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
} }
.user-name { .user-name {
font-size: 12px; font-size: 13px;
color: #999; color: #606266;
font-weight: 500;
} }
/* 操作按钮 */ /* 操作按钮 */
@ -516,64 +612,86 @@ onMounted(() => {
display: flex; display: flex;
justify-content: space-around; justify-content: space-around;
align-items: center; align-items: center;
padding-top: 12px; padding-top: 14px;
border-top: 1px solid #f0f0f0; border-top: 1px solid #f0f2f5;
gap: 8px;
} }
.action-item { .action-item {
display: flex; display: flex;
flex-direction: column;
align-items: center; align-items: center;
gap: 4px; gap: 4px;
padding: 4px 8px; padding: 8px 12px;
border-radius: 8px;
transition: all 0.3s ease;
cursor: pointer; cursor: pointer;
flex: 1;
min-width: 0;
&:active {
background-color: #f5f7fa;
transform: scale(0.95);
}
} }
.action-icon { .action-icon {
font-size: 14px; font-size: 18px;
color: #666; color: #606266;
font-weight: 500; font-weight: 500;
line-height: 1;
transition: all 0.3s ease;
&.checked { &.checked {
color: #1976d2; color: #2885ff;
font-weight: 600; font-weight: 600;
transform: scale(1.1);
} }
} }
.action-text { .action-text {
font-size: 14px; font-size: 12px;
color: #666; color: #606266;
font-weight: 500;
white-space: nowrap;
} }
.action-arrow { .action-arrow {
font-size: 18px; font-size: 16px;
color: #999; color: #909399;
margin-left: 4px; margin-left: 4px;
} }
/* 空状态 */ /* 空状态 */
.empty-state { .empty-state {
display: flex; display: flex;
flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
padding: 60px 0; padding: 80px 20px;
min-height: 300px;
} }
.empty-text { .empty-text {
font-size: 14px; font-size: 14px;
color: #999; color: #909399;
margin-top: 12px;
} }
/* 加载状态 */ /* 加载状态 */
.loading-state { .loading-state {
display: flex; display: flex;
flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
padding: 40px 0; padding: 60px 20px;
min-height: 200px;
} }
.loading-text { .loading-text {
font-size: 14px; font-size: 14px;
color: #999; color: #909399;
margin-top: 12px;
} }
</style> </style>