/* 工作统计页面样式 */
|
.work-statistics {
|
background-color: #f5f5f5;
|
min-height: 100vh;
|
padding-bottom: 12px;
|
|
/* 筛选条件展示区域样式 */
|
.filter-info-section {
|
margin: 0;
|
background: #fff;
|
padding: 12px;
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
position: relative;
|
|
.filter-info-title {
|
font-size: 16px;
|
font-weight: 500;
|
color: #333;
|
position: relative;
|
padding-left: 10px;
|
flex-shrink: 0;
|
|
&:before {
|
content: '';
|
position: absolute;
|
left: 0;
|
top: 50%;
|
transform: translateY(-50%);
|
width: 4px;
|
height: 14px;
|
background-color: #1A6FB8;
|
}
|
}
|
|
.filter-settings {
|
display: flex;
|
align-items: center;
|
color: #1A6FB8;
|
font-size: 15px;
|
flex-shrink: 0;
|
cursor: pointer;
|
|
.settings-icon {
|
width: 16px;
|
height: 16px;
|
margin-right: 4px;
|
}
|
}
|
}
|
|
/* 筛选条件内容样式 */
|
.filter-conditions {
|
background: #fff;
|
padding: 0 12px 12px;
|
display: flex;
|
flex-wrap: wrap;
|
|
.filter-info-item {
|
display: inline-flex;
|
align-items: center;
|
background-color: #f5f7fa;
|
border-radius: 4px;
|
padding: 4px 12px;
|
margin-right: 8px;
|
margin-bottom: 4px;
|
|
.filter-info-text {
|
font-size: 13px;
|
color: #555;
|
}
|
|
.filter-info-clear {
|
margin-left: 4px;
|
color: #999;
|
font-size: 12px;
|
}
|
}
|
}
|
|
/* 工作总览样式 */
|
.work-overview-section {
|
margin-top: 8px;
|
padding: 8px 12px 12px 12px;
|
background: #fff;
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
.work-overview-title {
|
font-size: 16px;
|
font-weight: 500;
|
color: #333;
|
margin: 0px 0px 7px 0px;
|
position: relative;
|
padding-left: 10px;
|
|
&:before {
|
content: '';
|
position: absolute;
|
left: 0;
|
top: 50%;
|
transform: translateY(-50%);
|
width: 4px;
|
height: 14px;
|
background-color: #1A6FB8;
|
}
|
}
|
|
.work-overview-cards {
|
display: flex;
|
flex-direction: column;
|
gap: 6px;
|
|
.card-row {
|
display: flex;
|
gap: 6px;
|
|
.overview-card {
|
padding: 8px 0px;
|
color: rgba(23, 26, 29, 0.6);
|
text-align: center;
|
|
.card-day-data {
|
font-size: 13px;
|
margin-bottom: 5px;
|
}
|
|
.card-month-rates {
|
font-size: 12px;
|
margin-bottom: 8px;
|
|
.month-compare, .month-ratio {
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
|
.rate-icon {
|
width: 10px;
|
height: 10px;
|
margin-right: 2px;
|
}
|
|
.up {
|
color: #f5222d;
|
display: flex;
|
align-items: center;
|
}
|
|
.down {
|
color: #52c41a;
|
display: flex;
|
align-items: center;
|
}
|
}
|
}
|
|
.card-value {
|
font-size: 24px;
|
font-weight: bold;
|
margin-top: auto;
|
margin-bottom: 4px;
|
}
|
|
.card-name {
|
font-size: 14px;
|
}
|
}
|
}
|
|
/* 总登记卡片 - 蓝色 */
|
.total-card {
|
background-color: #e6f7ff;
|
flex: 1;
|
.card-day-data {
|
color: #1A6FB8;
|
}
|
|
.card-value {
|
color: #1677ff;
|
}
|
}
|
|
/* 化解中卡片 - 蓝色 */
|
.process-card {
|
background-color: #e6f7ff;
|
flex: 1;
|
.card-day-data {
|
color: #1A6FB8;
|
}
|
|
.card-value {
|
color: #1677ff;
|
}
|
}
|
|
/* 不予受理卡片 - 粉色 */
|
.reject-card {
|
background-color: #ffece8;
|
flex: 1;
|
.card-day-data {
|
color: #F53F3F;
|
}
|
|
.card-value {
|
color: #f5222d;
|
}
|
}
|
|
/* 已结案卡片 - 黄色 */
|
.finish-card {
|
background-color: #fffbe6;
|
display: flex;
|
flex: 2;
|
|
.card-left-content {
|
width: 82px;
|
text-align: center;
|
|
.card-day-data {
|
color: #EF6C24;
|
}
|
|
.card-value {
|
color: #faad14;
|
}
|
}
|
|
.card-right-content {
|
flex: 1;
|
display: flex;
|
flex-direction: row;
|
justify-content: center;
|
align-items: center;
|
.vertical-divider {
|
width: 1px;
|
height: 32px;
|
background: rgba(126,134,142,0.16);
|
margin: 0;
|
}
|
|
.resolve-success, .resolve-fail {
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
margin: 4px 8px;
|
|
.resolve-value {
|
font-size: 16px;
|
font-weight: bold;
|
margin-bottom: 2px;
|
}
|
|
.resolve-label {
|
font-size: 12px;
|
}
|
}
|
|
.resolve-success .resolve-value {
|
color: #52c41a;
|
}
|
|
.resolve-fail .resolve-value {
|
color: #f5222d;
|
}
|
}
|
}
|
|
/* 化解成功率卡片 - 绿色 */
|
.resolve-rate-card {
|
// background-color: #f6ffed;
|
background-color: rgba(0, 186, 70, 0.1);
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
justify-content: center;
|
flex: 1;
|
|
.rate-value {
|
font-size: 22px;
|
font-weight: bold;
|
color: #52c41a;
|
margin-bottom: 4px;
|
}
|
|
.card-month-rates {
|
font-size: 12px;
|
margin-bottom: 4px;
|
|
.month-compare, .month-ratio {
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
|
.rate-icon {
|
width: 10px;
|
height: 10px;
|
margin-right: 2px;
|
}
|
|
.up {
|
color: #f5222d;
|
display: flex;
|
align-items: center;
|
}
|
|
.down {
|
color: #52c41a;
|
display: flex;
|
align-items: center;
|
}
|
}
|
}
|
|
.rate-label {
|
font-size: 13px;
|
}
|
}
|
}
|
}
|
|
/* 化解统计区域样式 */
|
.work-statistics-section {
|
margin-top: 8px;
|
padding: 8px 12px 12px 12px;
|
background: #fff;
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
.work-statistics-section-title {
|
font-size: 16px;
|
font-weight: 500;
|
color: #333;
|
position: relative;
|
padding-left: 10px;
|
|
&:before {
|
content: '';
|
position: absolute;
|
left: 0;
|
top: 50%;
|
transform: translateY(-50%);
|
width: 4px;
|
height: 14px;
|
background-color: #1A6FB8;
|
}
|
}
|
|
.work-statistics-tabs {
|
display: flex;
|
border-bottom: 1px solid #eee;
|
margin-bottom: 12px;
|
|
.tab-item {
|
padding: 8px 16px;
|
font-size: 14px;
|
color: #666;
|
position: relative;
|
cursor: pointer;
|
|
&.active {
|
color: #1677ff;
|
font-weight: 500;
|
|
&::after {
|
content: '';
|
position: absolute;
|
bottom: -1px;
|
left: 0;
|
width: 100%;
|
height: 2px;
|
background-color: #1677ff;
|
border-radius: 1px 1px 0 0;
|
}
|
}
|
}
|
}
|
|
.work-statistics-chart {
|
height: 240px;
|
margin-top: 12px;
|
}
|
|
.work-statistics-pie {
|
height: 280px;
|
margin-top: 12px;
|
}
|
}
|
|
/* 筛选抽屉样式 */
|
.filter-drawer {
|
.filter-content {
|
padding: 16px;
|
|
.filter-item {
|
margin-bottom: 16px;
|
|
.filter-label {
|
margin-bottom: 8px;
|
font-size: 14px;
|
color: #333;
|
}
|
|
.filter-date-picker {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
padding: 10px 12px;
|
border: 1px solid #ddd;
|
border-radius: 4px;
|
color: #666;
|
font-size: 14px;
|
|
.filter-arrow {
|
display: inline-block;
|
width: 8px;
|
height: 8px;
|
border-right: 1px solid #999;
|
border-bottom: 1px solid #999;
|
transform: rotate(45deg);
|
}
|
}
|
}
|
}
|
|
.filter-actions {
|
display: flex;
|
position: fixed;
|
bottom: 0;
|
left: 0;
|
right: 0;
|
padding: 12px 16px;
|
background: #fff;
|
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
|
|
.filter-reset-btn, .filter-apply-btn {
|
flex: 1;
|
margin: 0 8px;
|
}
|
}
|
}
|
|
/* 日期选择弹窗样式 */
|
.date-picker-modal {
|
width: 100vw;
|
min-width: 100vw;
|
max-width: 100vw;
|
margin: 0;
|
border-radius: 0;
|
position: fixed;
|
left: 0;
|
right: 0;
|
bottom: 0;
|
z-index: 999;
|
top: auto;
|
height: 400px;
|
max-height: 80vh;
|
|
:global {
|
.am-modal-content {
|
padding-top: 0 !important;
|
height: 400px;
|
max-height: 80vh;
|
width: 100vw;
|
min-width: 100vw;
|
display: flex;
|
flex-direction: column;
|
border-radius: 0;
|
position: relative;
|
}
|
.am-modal-header {
|
display: none;
|
}
|
.am-modal-body {
|
flex: 1 1 auto;
|
overflow: auto;
|
display: flex;
|
flex-direction: column;
|
}
|
.am-modal-wrap {
|
display: flex;
|
align-items: flex-end;
|
top: auto;
|
bottom: 0;
|
overflow: visible;
|
height: 400px;
|
max-height: 80vh;
|
z-index: 999;
|
width: 100vw;
|
min-width: 100vw;
|
}
|
.am-modal-mask {
|
position: fixed;
|
top: 0;
|
width: 100%;
|
height: 100%;
|
z-index: 998;
|
}
|
}
|
.modal-header {
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
padding: 16px;
|
border-bottom: 1px solid #f0f0f0;
|
background: #fff;
|
.modal-title {
|
font-size: 16px;
|
font-weight: 500;
|
color: #333;
|
}
|
.modal-close {
|
font-size: 16px;
|
color: #999;
|
cursor: pointer;
|
}
|
}
|
.calendar-container {
|
height: 100%;
|
}
|
}
|
}
|
|
.custom-filter-modal .dtm-modal-body {
|
padding: 0 15px 0px !important;
|
}
|
|
/* 筛选弹窗样式 */
|
.custom-filter-modal {
|
width: 100%;
|
margin: 0;
|
border-radius: 0;
|
position: fixed;
|
top: 44px;
|
left: 0;
|
right: 0;
|
z-index: 999;
|
|
:global {
|
.am-modal-content {
|
padding-top: 0 !important;
|
height: 100%;
|
display: flex;
|
flex-direction: column;
|
border-radius: 0;
|
position: relative;
|
max-height: unset;
|
}
|
|
.am-modal-header {
|
display: none;
|
}
|
|
.am-modal-body {
|
flex: 1;
|
overflow: hidden;
|
display: flex;
|
flex-direction: column;
|
}
|
|
.am-modal-wrap {
|
display: flex;
|
align-items: flex-start;
|
top: 44px;
|
overflow: visible;
|
height: calc(100% - 192px);
|
z-index: 999;
|
}
|
|
.am-modal-mask {
|
position: fixed;
|
top: 0;
|
width: 100%;
|
height: 100%;
|
z-index: 998;
|
}
|
}
|
}
|
|
/* 确保导航栏在弹窗之上 */
|
:global {
|
.navbar-page {
|
.navbar {
|
z-index: 1003;
|
position: relative;
|
}
|
}
|
}
|
|
.navBarPage-navbar {
|
z-index: 1003 !important;
|
}
|
|
.custom-filter-content {
|
padding: 12px;
|
margin-top: 44px;
|
flex: 1;
|
overflow-y: auto;
|
-webkit-overflow-scrolling: touch;
|
display: flex;
|
flex-wrap: wrap;
|
justify-content: space-between;
|
background: #FFFFFF;
|
|
.filter-item {
|
width: calc(50% - 8px);
|
margin-bottom: 16px;
|
|
.filter-label {
|
font-size: 15px;
|
color: #171A1D;
|
margin-bottom: 8px;
|
font-weight: normal;
|
text-align: left;
|
}
|
|
.filter-selector {
|
position: relative;
|
height: 40px;
|
display: flex;
|
align-items: center;
|
padding: 0 6px;
|
background: #F2F3F5;
|
border-radius: 4px;
|
color: #999;
|
font-size: 14px;
|
|
.filter-arrow {
|
position: absolute;
|
right: 12px;
|
top: 50%;
|
width: 8px;
|
height: 8px;
|
border-right: 1px solid #999;
|
border-bottom: 1px solid #999;
|
transform: translateY(-50%) rotate(45deg);
|
}
|
}
|
|
& .dtm-input, .dtm-select {
|
height: 40px;
|
border-radius: 4px !important;
|
background-color: #FFFFFF !important;
|
width: 100% !important;
|
border: none !important;
|
box-shadow: none !important;
|
|
input {
|
background-color: #FFFFFF !important;
|
font-size: 14px;
|
|
&::placeholder {
|
color: #999;
|
}
|
}
|
}
|
}
|
.filter-item.full-row {
|
width: 100%;
|
}
|
}
|
|
.custom-filter-buttons {
|
display: flex;
|
padding: 12px;
|
border-top: 1px solid #eee;
|
background: #FFFFFF;
|
position: sticky;
|
bottom: 0;
|
|
.filter-reset {
|
width: 120px;
|
height: 44px;
|
margin-right: 12px;
|
border: 1px solid #1A6FB8;
|
color: #1A6FB8;
|
background-color: #FFFFFF;
|
border-radius: 4px;
|
font-size: 16px;
|
}
|
|
.filter-apply {
|
flex: 1;
|
height: 44px;
|
background-color: #1A6FB8;
|
color: #FFFFFF;
|
border-radius: 4px;
|
font-size: 16px;
|
}
|
}
|
|
.canal-radio-group {
|
display: flex;
|
flex-wrap: wrap;
|
gap: 8px 12px;
|
margin-top: 8px;
|
}
|
.canal-radio {
|
flex: 0 0 calc(50% - 6px);
|
box-sizing: border-box;
|
height: 40px;
|
background: #f5f7fa;
|
border-radius: 6px;
|
border: 1px solid transparent;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
font-size: 15px;
|
color: #333;
|
cursor: pointer;
|
position: relative;
|
transition: border-color 0.2s, background 0.2s;
|
}
|
.canal-radio.checked {
|
background: #f5f7fa;
|
border: 1px solid #1a6fb8;
|
color: #1a6fb8;
|
}
|
.canal-radio-dot {
|
display: inline-block;
|
width: 18px;
|
height: 18px;
|
border-radius: 50%;
|
border: 1.5px solid #1a6fb8;
|
background: #fff;
|
margin-left: 8px;
|
position: relative;
|
}
|
.canal-radio.checked .canal-radio-dot::after {
|
content: '';
|
display: block;
|
width: 10px;
|
height: 10px;
|
background: #1a6fb8;
|
border-radius: 50%;
|
position: absolute;
|
left: 3.5px;
|
top: 3.5px;
|
}
|
.filter-item-select {
|
color: #999;
|
text-align: left;
|
font-size: 14px;
|
padding-left: 6px;
|
}
|
|
/* 时间类型选择弹窗样式 */
|
.date-type-modal {
|
width: 100%;
|
margin: 0;
|
border-radius: 0;
|
position: fixed;
|
left: 0;
|
right: 0;
|
bottom: 0;
|
z-index: 999;
|
top: auto;
|
height: auto;
|
max-height: 80vh;
|
|
:global {
|
.am-modal-content {
|
padding-top: 0 !important;
|
display: flex;
|
flex-direction: column;
|
border-radius: 0;
|
position: relative;
|
max-height: 80vh;
|
width: 100vw;
|
min-width: 100vw;
|
}
|
.am-modal-header {
|
display: none;
|
}
|
.am-modal-body {
|
flex: 1 1 auto;
|
overflow: auto;
|
display: flex;
|
flex-direction: column;
|
}
|
.am-modal-wrap {
|
display: flex;
|
align-items: flex-end;
|
top: auto;
|
bottom: 0;
|
overflow: visible;
|
height: auto;
|
z-index: 999;
|
width: 100vw;
|
min-width: 100vw;
|
}
|
.am-modal-mask {
|
position: fixed;
|
top: 0;
|
width: 100%;
|
height: 100%;
|
z-index: 998;
|
}
|
}
|
.modal-header {
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
padding: 16px;
|
border-bottom: 1px solid #f0f0f0;
|
background: #fff;
|
.modal-title {
|
font-size: 16px;
|
font-weight: 500;
|
color: #333;
|
}
|
.modal-close {
|
font-size: 16px;
|
color: #999;
|
cursor: pointer;
|
}
|
}
|
.date-type-modal-content {
|
background: #fff;
|
border-radius: 0;
|
padding: 8px 0;
|
min-height: 0;
|
box-shadow: none;
|
}
|
.date-type-modal-item {
|
font-size: 16px;
|
color: #222;
|
padding: 16px;
|
text-align: center;
|
border-bottom: 1px solid #f0f0f0;
|
cursor: pointer;
|
transition: background 0.2s;
|
&:last-child {
|
border-bottom: none;
|
}
|
&:active {
|
background: #f5f7fa;
|
}
|
}
|
}
|
|
.switch-view-drawer {
|
.switch-view-header {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
padding: 18px 16px 0 16px;
|
font-size: 18px;
|
font-weight: 500;
|
.switch-view-close {
|
font-size: 22px;
|
cursor: pointer;
|
color: #999;
|
}
|
.switch-view-title {
|
flex: 1;
|
text-align: center;
|
color: #222;
|
font-size: 17px;
|
font-weight: 500;
|
}
|
.switch-view-confirm {
|
color: #1a6fb8;
|
font-size: 16px;
|
cursor: pointer;
|
}
|
}
|
.switch-view-list {
|
margin-top: 18px;
|
.switch-view-item {
|
text-align: center;
|
font-size: 17px;
|
color: #222;
|
padding: 16px 0;
|
border-bottom: 1px solid #f2f3f5;
|
cursor: pointer;
|
&.active {
|
color: #1a6fb8;
|
background: #f5faff;
|
font-weight: 600;
|
}
|
&:last-child {
|
border-bottom: none;
|
}
|
}
|
}
|
}
|