feat(assoc): v4.0.1 合伙人关联码、分佣账单与 H5 用户管理

订单佣金只认关联用户;合伙人备注写入独立表;H5 增加用户管理与首页统计。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-30 14:35:39 +08:00
parent 3b669f7e38
commit 9c8d5f2cad
125 changed files with 6355 additions and 1436 deletions
+95 -24
View File
@@ -95,17 +95,54 @@
z-index: 2;
background: var(--color-card);
border-radius: var(--radius-lg);
padding: 20px 16px;
padding: 16px;
box-shadow: var(--shadow-card);
}
.store-detail-title-row {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 6px;
margin-bottom: 8px;
}
.store-detail-name {
display: block;
font-family: var(--font-headline);
font-size: 20px;
font-weight: 700;
color: var(--color-ink-black);
margin-bottom: 8px;
line-height: 1.3;
}
.store-detail-rating-row {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 10px;
}
.store-detail-stars {
display: flex;
align-items: center;
gap: 1px;
}
.store-detail-star {
font-size: 14px;
line-height: 18px;
color: #ddd;
}
.store-detail-star--on {
color: #e8b84a;
}
.store-detail-redeem {
font-size: 12px;
font-weight: 600;
color: var(--color-heritage-red);
white-space: nowrap;
}
.store-detail-meta {
@@ -148,52 +185,73 @@
white-space: pre-wrap;
}
.store-detail-tags {
display: flex;
flex-wrap: wrap;
margin-top: 12px;
}
.store-detail-tag {
padding: 4px 10px;
margin-right: 8px;
margin-bottom: 8px;
padding: 2px 8px;
border-radius: 999px;
background: rgba(166, 29, 36, 0.08);
color: var(--color-heritage-red);
font-size: 11px;
font-weight: 500;
line-height: 16px;
}
.store-detail-marquee-wrap {
margin: 0 var(--space-page) 12px;
margin: 0 0 12px;
}
.store-detail-marquee {
margin: 0;
padding: 0;
border-radius: 8px;
background: #fff7f6;
border: 1px solid rgba(166, 29, 36, 0.12);
padding: 0 10px;
border-radius: 999px;
background: #faf6ee;
border: 1px solid rgba(201, 162, 62, 0.4);
overflow: hidden;
height: 40px;
height: 32px;
box-sizing: border-box;
position: relative;
}
.store-detail-marquee-swiper {
height: 32px;
}
.store-detail-marquee-inner {
position: absolute;
top: 50%;
margin-top: -10px;
height: 32px;
white-space: nowrap;
display: flex;
align-items: center;
gap: 6px;
}
.store-detail-marquee-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: #e8a317;
flex-shrink: 0;
}
.store-detail-marquee-text {
white-space: nowrap;
font-size: 12px;
line-height: 20px;
color: #5a413f;
}
.store-detail-marquee-amount {
white-space: nowrap;
font-size: 12px;
line-height: 20px;
font-weight: 700;
color: #a61d24;
}
.benefit-intro-card.store-detail-benefit-intro {
margin: 0 var(--space-page) 16px;
background: #fffaf0;
border-color: rgba(201, 162, 62, 0.4);
}
.store-detail-section {
background: var(--color-card);
margin: 0 var(--space-page) 16px;
@@ -203,15 +261,28 @@
}
.store-detail-section-title {
display: block;
display: flex;
align-items: center;
gap: 6px;
margin-bottom: 10px;
}
.store-detail-section-title-bar {
width: 3px;
height: 14px;
border-radius: 1px;
background: var(--color-heritage-red, #a61d24);
flex-shrink: 0;
}
.store-detail-section-title-text {
font-family: var(--font-headline);
font-size: 16px;
font-weight: 700;
margin-bottom: 10px;
color: var(--color-on-surface);
}
.store-detail-section-title--rule {
.store-detail-section-title--rule .store-detail-section-title-text {
color: var(--color-heritage-red, #a61d24);
}