c6206787da
项目结构: - backend/ Python FastAPI 后端 - uni-app/ uni-app跨端前端 - docs/ 设计文档 - docker-compose.yml Docker编排 - nginx/scripts/systemd 运维配置 已完成功能: - 用户认证 (JWT) - 智能翻译 + 回复建议 - 营销素材生成 - 客户管理 + 沉默检测 - 报价单管理 - 产品库管理 - 汇率换算 - 推送通知 (uni-push) - WhatsApp Webhook框架 - Celery定时任务
160 lines
2.1 KiB
Plaintext
160 lines
2.1 KiB
Plaintext
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 30rpx;
|
|
background: #fff;
|
|
}
|
|
|
|
.add-btn {
|
|
background: #1890ff;
|
|
color: #fff;
|
|
font-size: 28rpx;
|
|
padding: 15rpx 30rpx;
|
|
border-radius: 8rpx;
|
|
}
|
|
|
|
.customer-list {
|
|
padding: 0 30rpx;
|
|
}
|
|
|
|
.customer-item {
|
|
background: #fff;
|
|
border-radius: 12rpx;
|
|
padding: 30rpx;
|
|
margin-bottom: 20rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.customer-info {
|
|
flex: 1;
|
|
}
|
|
|
|
.customer-name {
|
|
font-size: 30rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 8rpx;
|
|
}
|
|
|
|
.customer-meta {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
}
|
|
|
|
.customer-status {
|
|
padding: 6rpx 16rpx;
|
|
border-radius: 20rpx;
|
|
font-size: 22rpx;
|
|
}
|
|
|
|
.status-lead {
|
|
background: #e6f7ff;
|
|
color: #1890ff;
|
|
}
|
|
|
|
.status-negotiating {
|
|
background: #fffbe6;
|
|
color: #faad14;
|
|
}
|
|
|
|
.status-closed {
|
|
background: #f6ffed;
|
|
color: #52c41a;
|
|
}
|
|
|
|
.customer-actions {
|
|
display: flex;
|
|
gap: 20rpx;
|
|
}
|
|
|
|
.action-btn {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
padding: 10rpx;
|
|
}
|
|
|
|
.delete-btn {
|
|
color: #ff4d4f;
|
|
}
|
|
|
|
.empty {
|
|
text-align: center;
|
|
padding: 100rpx;
|
|
color: #999;
|
|
}
|
|
|
|
.modal {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 100;
|
|
}
|
|
|
|
.modal-content {
|
|
background: #fff;
|
|
border-radius: 12rpx;
|
|
padding: 40rpx;
|
|
width: 80%;
|
|
max-height: 80vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.modal-title {
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
margin-bottom: 30rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.form-label {
|
|
font-size: 26rpx;
|
|
color: #666;
|
|
margin-bottom: 10rpx;
|
|
display: block;
|
|
}
|
|
|
|
.form-input {
|
|
border: 1rpx solid #d9d9d9;
|
|
border-radius: 8rpx;
|
|
padding: 20rpx;
|
|
font-size: 28rpx;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.modal-btns {
|
|
display: flex;
|
|
gap: 20rpx;
|
|
margin-top: 30rpx;
|
|
}
|
|
|
|
.modal-btn {
|
|
flex: 1;
|
|
padding: 20rpx;
|
|
border-radius: 8rpx;
|
|
text-align: center;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.btn-cancel {
|
|
background: #f5f5f5;
|
|
color: #666;
|
|
}
|
|
|
|
.btn-confirm {
|
|
background: #1890ff;
|
|
color: #fff;
|
|
} |