门店开通流程
This commit is contained in:
@@ -926,6 +926,230 @@ html, body, #root {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.partner-upload-dashed--compact {
|
||||
padding: 12px;
|
||||
font-size: 10px;
|
||||
aspect-ratio: 1;
|
||||
}
|
||||
|
||||
.partner-oss-upload-input {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
opacity: 0;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
.partner-upload-preview {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 100%;
|
||||
border: none;
|
||||
padding: 0;
|
||||
background: transparent;
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.partner-upload-preview--wide {
|
||||
aspect-ratio: 16 / 9;
|
||||
}
|
||||
|
||||
.partner-upload-preview img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.partner-upload-preview-mask {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 4px;
|
||||
background: rgba(0, 0, 0, 0.35);
|
||||
color: #fff;
|
||||
opacity: 0;
|
||||
transition: opacity 0.2s ease;
|
||||
}
|
||||
|
||||
.partner-upload-preview:hover .partner-upload-preview-mask,
|
||||
.partner-upload-preview:focus-within .partner-upload-preview-mask {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.partner-upload-file {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
width: 100%;
|
||||
min-height: 96px;
|
||||
padding: 16px;
|
||||
border-radius: 12px;
|
||||
background-color: var(--color-surface-container-low);
|
||||
border: 1px solid rgba(166, 29, 36, 0.2);
|
||||
cursor: pointer;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.partner-region-trigger {
|
||||
width: 100%;
|
||||
justify-content: flex-start;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.partner-region-chevron {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.partner-region-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 10000;
|
||||
background: rgba(0, 0, 0, 0.45);
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: center;
|
||||
padding-bottom: env(safe-area-inset-bottom, 0px);
|
||||
}
|
||||
|
||||
.partner-region-sheet {
|
||||
width: 100%;
|
||||
max-width: 480px;
|
||||
max-height: min(78vh, 640px);
|
||||
background: var(--color-surface);
|
||||
border-radius: 16px 16px 0 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.partner-region-sheet-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 12px 16px;
|
||||
border-bottom: 1px solid var(--color-outline-variant);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.partner-region-sheet-btn {
|
||||
border: none;
|
||||
background: transparent;
|
||||
color: var(--color-on-surface-variant);
|
||||
font-size: 14px;
|
||||
padding: 8px;
|
||||
min-width: 48px;
|
||||
}
|
||||
|
||||
.partner-region-sheet-btn--primary {
|
||||
color: var(--color-primary);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.partner-region-sheet-btn--primary:disabled {
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.partner-region-steps {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
padding: 12px 16px 0;
|
||||
overflow-x: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.partner-region-step {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
border: 1px solid var(--color-outline-variant);
|
||||
border-radius: 999px;
|
||||
padding: 6px 12px;
|
||||
background: var(--color-surface-container-low);
|
||||
color: var(--color-on-surface-variant);
|
||||
font-size: 12px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.partner-region-step--active {
|
||||
border-color: var(--color-primary);
|
||||
color: var(--color-primary);
|
||||
background: rgba(166, 29, 36, 0.08);
|
||||
}
|
||||
|
||||
.partner-region-step--done {
|
||||
color: var(--color-on-surface);
|
||||
}
|
||||
|
||||
.partner-region-step-index {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border-radius: 50%;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: var(--color-surface-container-highest);
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.partner-region-step--active .partner-region-step-index {
|
||||
background: var(--color-primary);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.partner-region-breadcrumb {
|
||||
padding: 8px 16px 0;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.partner-region-list {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
overflow-y: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
overscroll-behavior: contain;
|
||||
touch-action: pan-y;
|
||||
padding: 8px 0 calc(12px + env(safe-area-inset-bottom, 0px));
|
||||
}
|
||||
|
||||
.partner-region-columns {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.partner-region-column {
|
||||
overflow-y: auto;
|
||||
border-right: 1px solid var(--color-outline-variant);
|
||||
}
|
||||
|
||||
.partner-region-column:last-child {
|
||||
border-right: none;
|
||||
}
|
||||
|
||||
.partner-region-item {
|
||||
display: block;
|
||||
width: 100%;
|
||||
border: none;
|
||||
background: transparent;
|
||||
text-align: left;
|
||||
padding: 14px 16px;
|
||||
font-size: 15px;
|
||||
color: var(--color-on-surface);
|
||||
}
|
||||
|
||||
.partner-region-item--active {
|
||||
color: var(--color-primary);
|
||||
background: rgba(166, 29, 36, 0.08);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.partner-sticky-footer {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
@@ -1053,7 +1277,39 @@ html, body, #root {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
margin-bottom: 16px;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.partner-store-card-hit {
|
||||
display: block;
|
||||
width: 100%;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.partner-audit-result {
|
||||
margin: 48px var(--space-page) 0;
|
||||
padding: 32px 24px;
|
||||
text-align: center;
|
||||
background: var(--color-card);
|
||||
border-radius: var(--radius-md);
|
||||
box-shadow: var(--shadow-card);
|
||||
}
|
||||
|
||||
.partner-audit-result-icon {
|
||||
width: 72px;
|
||||
height: 72px;
|
||||
margin: 0 auto 16px;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: rgba(42, 110, 187, 0.12);
|
||||
color: var(--color-status-blue);
|
||||
}
|
||||
|
||||
.partner-audit-result-icon .material-symbols-outlined {
|
||||
font-size: 36px;
|
||||
}
|
||||
|
||||
.partner-status-pill {
|
||||
@@ -1074,6 +1330,11 @@ html, body, #root {
|
||||
color: var(--color-secondary);
|
||||
}
|
||||
|
||||
.partner-status-pill--auditing {
|
||||
background: rgba(42, 110, 187, 0.12);
|
||||
color: var(--color-status-blue);
|
||||
}
|
||||
|
||||
.partner-status-pill--closed {
|
||||
background: var(--color-surface-container);
|
||||
color: var(--color-subtle-gray);
|
||||
@@ -1217,7 +1478,7 @@ html, body, #root {
|
||||
padding: 12px 24px;
|
||||
border-radius: 8px;
|
||||
font-size: 14px;
|
||||
z-index: 200;
|
||||
z-index: 10001;
|
||||
}
|
||||
|
||||
/* ── Orders ── */
|
||||
|
||||
Reference in New Issue
Block a user