统计分析页面
parent
b928cb3316
commit
8095d8c99f
@ -1,8 +1,215 @@
|
||||
.placeholder {
|
||||
.container {
|
||||
background: #fff;
|
||||
border-radius: 4px;
|
||||
padding: 24px;
|
||||
min-height: 72vh;
|
||||
font-size: 16px;
|
||||
color: #666;
|
||||
border-radius: 10px;
|
||||
padding: 16px 20px 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.toolbar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.createButton {
|
||||
background: linear-gradient(98deg, #12d49c 0%, #0ec9c9 100%);
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
padding: 6px 16px;
|
||||
height: 34px;
|
||||
box-shadow: 0 6px 14px rgba(18, 212, 156, 0.25);
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: linear-gradient(98deg, #0fcf94 0%, #0cbcbc 100%);
|
||||
}
|
||||
}
|
||||
|
||||
.toolbarRight {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.select {
|
||||
width: 88px;
|
||||
|
||||
:global(.ant-select-selector) {
|
||||
border-radius: 6px;
|
||||
border-color: #e8e8e8;
|
||||
box-shadow: none !important;
|
||||
height: 34px;
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
:global(.ant-select-item-option-selected) {
|
||||
background: #e8fff2 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.segmented {
|
||||
:global(.ant-segmented-group) {
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
:global(.ant-segmented-item) {
|
||||
padding: 4px 12px;
|
||||
min-width: 38px;
|
||||
height: 34px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
:global(.ant-segmented-item-selected) {
|
||||
background: #0fcfaf;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.dayButton {
|
||||
width: 38px;
|
||||
height: 34px;
|
||||
border-radius: 6px;
|
||||
border: 1px solid #e8e8e8;
|
||||
color: #999;
|
||||
background: #fff;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
border-color: #0fcfaf;
|
||||
color: #0fcfaf;
|
||||
}
|
||||
}
|
||||
|
||||
.calendarWrapper {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background: #fff;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
border: 1px solid #f2f2f2;
|
||||
}
|
||||
|
||||
.weekHeader {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 1fr);
|
||||
background: #f9fbfc;
|
||||
color: #9fa6ad;
|
||||
font-size: 12px;
|
||||
border-bottom: 1px solid #f2f2f2;
|
||||
}
|
||||
|
||||
.weekCell {
|
||||
text-align: center;
|
||||
padding: 8px 0;
|
||||
border-right: 1px solid #f2f2f2;
|
||||
|
||||
&:last-child {
|
||||
border-right: none;
|
||||
}
|
||||
}
|
||||
|
||||
.calendarGrid {
|
||||
flex: 1;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 1fr);
|
||||
grid-auto-rows: minmax(110px, 1fr);
|
||||
position: relative;
|
||||
background: #fff;
|
||||
border-left: 1px solid #f2f2f2;
|
||||
border-bottom: 1px solid #f2f2f2;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.dayCell {
|
||||
border-right: 1px solid #f2f2f2;
|
||||
border-top: 1px solid #f2f2f2;
|
||||
padding: 10px;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.dayNumber {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
right: 10px;
|
||||
color: #9fa6ad;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.dimmed {
|
||||
opacity: 0.45;
|
||||
}
|
||||
|
||||
.eventBlock {
|
||||
position: relative;
|
||||
margin: 34px 6px 10px;
|
||||
border-radius: 8px;
|
||||
padding: 10px 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
font-size: 13px;
|
||||
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
|
||||
pointer-events: none;
|
||||
border: 1px solid transparent;
|
||||
box-sizing: border-box;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.eventInfo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.eventDot {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
background: #2bd1ab;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.eventTitle {
|
||||
color: #6f6f6f;
|
||||
}
|
||||
|
||||
.eventIcon {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.sand {
|
||||
background: #fff7e6;
|
||||
border-color: #ffe7c2;
|
||||
color: #d48806;
|
||||
|
||||
.eventDot {
|
||||
background: #f5a623;
|
||||
}
|
||||
|
||||
.eventIcon {
|
||||
color: #f5a623;
|
||||
}
|
||||
}
|
||||
|
||||
.mint {
|
||||
background: #e8fff2;
|
||||
border-color: #c5f4da;
|
||||
color: #12a77c;
|
||||
|
||||
.eventDot {
|
||||
background: #12d49c;
|
||||
}
|
||||
|
||||
.eventIcon {
|
||||
color: #12a77c;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,8 +1,193 @@
|
||||
.placeholder {
|
||||
.container {
|
||||
background: #f6f8fb;
|
||||
border-radius: 10px;
|
||||
padding: 14px 16px 16px;
|
||||
height: 100%;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.toolbar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.createButton {
|
||||
background: linear-gradient(98deg, #12d49c 0%, #0ec9c9 100%);
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
padding: 6px 16px;
|
||||
height: 34px;
|
||||
box-shadow: 0 6px 14px rgba(18, 212, 156, 0.25);
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: linear-gradient(98deg, #0fcf94 0%, #0cbcbc 100%);
|
||||
}
|
||||
}
|
||||
|
||||
.filters {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.filterGroup {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
color: #666;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.filterLabel {
|
||||
color: #888;
|
||||
min-width: 64px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.statusGroup {
|
||||
:global(.ant-checkbox-wrapper) {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
:global(.ant-checkbox-inner) {
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
.creatorSelect {
|
||||
width: 120px;
|
||||
|
||||
:global(.ant-select-selector) {
|
||||
border-radius: 6px !important;
|
||||
height: 34px;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
.grid {
|
||||
flex: 1;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
|
||||
gap: 12px;
|
||||
overflow-y: auto;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.card {
|
||||
position: relative;
|
||||
background: #fff;
|
||||
border-radius: 4px;
|
||||
padding: 24px;
|
||||
min-height: 72vh;
|
||||
border: 1px solid #eef2f7;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 214px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.ribbon {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
color: #fff;
|
||||
font-size: 12px;
|
||||
padding: 8px 14px;
|
||||
transform: translate(26px, -6px) rotate(45deg);
|
||||
width: 92px;
|
||||
text-align: center;
|
||||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
||||
.cardBody {
|
||||
padding: 16px 16px 8px;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.titleRow {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.metaRow {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 16px;
|
||||
color: #666;
|
||||
font-size: 13px;
|
||||
|
||||
&:last-of-type {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
.emphasis {
|
||||
color: #333;
|
||||
font-weight: 600;
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
.muted {
|
||||
color: #999;
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
.files {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.fileChip {
|
||||
background: #f6f8fb;
|
||||
border-radius: 8px;
|
||||
padding: 8px 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
color: #4a5560;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.actions {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
align-items: center;
|
||||
border-top: 1px solid #f0f2f5;
|
||||
background: #fbfbfb;
|
||||
}
|
||||
|
||||
.actions :global(.ant-btn) {
|
||||
border: none;
|
||||
height: 44px;
|
||||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.view {
|
||||
color: #14b981;
|
||||
}
|
||||
|
||||
.copy {
|
||||
color: #3e7aff;
|
||||
}
|
||||
|
||||
.archive {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
@ -1,8 +1,192 @@
|
||||
.placeholder {
|
||||
|
||||
.container {
|
||||
background: #f6f8fb;
|
||||
border-radius: 10px;
|
||||
padding: 14px 14px 18px;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
.statsRow {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, 1fr);
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.statCard {
|
||||
background: #fff;
|
||||
border-radius: 10px;
|
||||
padding: 12px 16px;
|
||||
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.statTitle {
|
||||
color: #6c7681;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.statValue {
|
||||
font-size: 28px;
|
||||
font-weight: 700;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.statTime {
|
||||
color: #9fa6ad;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.filterRow {
|
||||
background: #fff;
|
||||
border-radius: 4px;
|
||||
padding: 24px;
|
||||
min-height: 72vh;
|
||||
font-size: 16px;
|
||||
border-radius: 10px;
|
||||
padding: 10px 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 14px;
|
||||
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
|
||||
.reportButton {
|
||||
background: linear-gradient(98deg, #12d49c 0%, #0ec9c9 100%);
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
padding: 0 16px;
|
||||
height: 34px;
|
||||
box-shadow: 0 6px 14px rgba(18, 212, 156, 0.25);
|
||||
}
|
||||
|
||||
.filters {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px 14px;
|
||||
}
|
||||
|
||||
.filterTitle {
|
||||
color: #666;
|
||||
font-size: 13px;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.statusGroup {
|
||||
:global(.ant-checkbox-wrapper) {
|
||||
margin-right: 12px;
|
||||
font-size: 13px;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
:global(.ant-checkbox-inner) {
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
.rightFilters {
|
||||
margin-left: auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.filterLabel {
|
||||
color: #888;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.select {
|
||||
width: 120px;
|
||||
|
||||
:global(.ant-select-selector) {
|
||||
border-radius: 6px !important;
|
||||
height: 34px;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.card {
|
||||
position: relative;
|
||||
background: #fff;
|
||||
border-radius: 10px;
|
||||
border: 1px solid #eef1f6;
|
||||
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
|
||||
overflow: hidden;
|
||||
min-height: 170px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.ribbon {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
color: #fff;
|
||||
font-size: 12px;
|
||||
padding: 8px 14px;
|
||||
transform: translate(26px, -6px) rotate(45deg);
|
||||
width: 92px;
|
||||
text-align: center;
|
||||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
||||
.cardHeader {
|
||||
padding: 14px 16px 6px;
|
||||
}
|
||||
|
||||
.cardTitle {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.cardBody {
|
||||
padding: 0 16px 10px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
color: #555;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.emphasis {
|
||||
color: #12c48b;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.muted {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.description {
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.cardFooter {
|
||||
margin-top: auto;
|
||||
border-top: 1px solid #f0f2f5;
|
||||
padding: 8px 12px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.secondaryAction {
|
||||
color: #3e7aff;
|
||||
}
|
||||
|
||||
@ -1,8 +1,72 @@
|
||||
.placeholder {
|
||||
.container {
|
||||
background: #f6f8fb;
|
||||
border-radius: 10px;
|
||||
padding: 14px 14px 18px;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
.toolbar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
background: #fff;
|
||||
border-radius: 4px;
|
||||
padding: 24px;
|
||||
min-height: 72vh;
|
||||
font-size: 16px;
|
||||
border-radius: 10px;
|
||||
padding: 10px 12px;
|
||||
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
|
||||
.toolbarFilters {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.filterLabel {
|
||||
color: #666;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.select {
|
||||
width: 120px;
|
||||
|
||||
:global(.ant-select-selector) {
|
||||
border-radius: 6px !important;
|
||||
height: 34px;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
.rowThree {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.rowTwo {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.card,
|
||||
.cardWide {
|
||||
background: #fff;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
|
||||
padding: 10px 12px 6px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.cardTitle {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue