/* 工作统计页面样式 */
|
.area-statistics {
|
background-color: #f5f5f5;
|
min-height: 100vh;
|
padding-bottom: 12px;
|
|
/* 筛选条件展示区域样式 */
|
.filter-info-section {
|
margin: 0;
|
background: #fff;
|
padding: 12px 16px;
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
position: relative;
|
border-bottom: 1px solid #f0f0f0;
|
|
.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 16px 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 {
|
flex: 1;
|
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;
|
border-left: 1px solid rgba(0, 0, 0, 0.06);
|
|
.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: 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: 100%;
|
margin: 0;
|
border-radius: 0;
|
position: fixed;
|
top: 44px;
|
left: 0;
|
right: 0;
|
bottom: 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% - 44px);
|
z-index: 999;
|
}
|
|
.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: 80vh;
|
}
|
}
|
|
/* 时间类型选择弹窗样式 */
|
.date-type-modal {
|
width: 100%;
|
margin: 0;
|
border-radius: 0;
|
position: fixed;
|
top: 44px;
|
left: 0;
|
right: 0;
|
bottom: 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% - 44px);
|
z-index: 999;
|
}
|
.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;
|
}
|
}
|
}
|
|
/* 事项等级区域样式 */
|
.case-level-section {
|
margin-top: 8px;
|
padding: 8px 12px 1px 12px;
|
background: #fff;
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
.case-level-title {
|
font-size: 16px;
|
font-weight: 500;
|
color: #333;
|
position: relative;
|
padding-left: 10px;
|
padding-bottom: 10px;
|
|
&:before {
|
content: '';
|
position: absolute;
|
left: 0;
|
top: 40%;
|
transform: translateY(-50%);
|
width: 4px;
|
height: 14px;
|
background-color: #1A6FB8;
|
}
|
}
|
|
.case-level-list {
|
.case-level-item {
|
display: flex;
|
align-items: center;
|
margin-bottom: 16px;
|
|
.level-name {
|
width: 40px;
|
font-size: 14px;
|
color: #333;
|
flex-shrink: 0;
|
}
|
|
.level-bar-container {
|
flex: 1;
|
height: 16px;
|
background-color: #f0f2f5;
|
// border-radius: 4px;
|
overflow: hidden;
|
margin: 0 16px;
|
position: relative;
|
|
.level-bar {
|
height: 100%;
|
// background-color: #1677ff;
|
background: linear-gradient(90deg,#1a6fb8, #5fa6d4 100%);
|
// border-radius: 4px;
|
}
|
}
|
|
.level-count {
|
font-size: 14px;
|
color: #999;
|
width: 40px;
|
text-align: right;
|
}
|
}
|
}
|
}
|
|
/* 超时办件区域样式 */
|
.timeout-section {
|
background: #fff;
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
.timeout-title {
|
font-size: 16px;
|
font-weight: 500;
|
color: #333;
|
margin-top: 8px;
|
position: relative;
|
padding-left: 10px;
|
padding: 8px 0 8px 26px;
|
|
&:before {
|
content: '';
|
position: absolute;
|
left: 16px;
|
top: 50%;
|
transform: translateY(-50%);
|
width: 4px;
|
height: 14px;
|
background-color: #1A6FB8;
|
}
|
}
|
|
.timeout-tabs {
|
display: flex;
|
margin-bottom: 12px;
|
overflow-x: auto;
|
padding: 0 10px;
|
|
.timeout-tab {
|
flex: 1;
|
height: 36px;
|
line-height: 36px;
|
text-align: center;
|
font-size: 14px;
|
color: #1A6FB8;
|
padding: 0 8px;
|
cursor: pointer;
|
white-space: nowrap;
|
border: 1px solid #1A6FB8;
|
|
&:last-child {
|
margin-right: 0;
|
}
|
|
&.active {
|
color: #fff;
|
background: #1A6FB8;
|
}
|
|
.count {
|
margin-left: 4px;
|
font-weight: 500;
|
}
|
}
|
}
|
|
.supervise-tabs {
|
display: flex;
|
margin-bottom: 12px;
|
padding: 0 16px;
|
|
.supervise-tab {
|
padding: 0px 8px 0px 8px;
|
font-size: 13px;
|
color: #666;
|
background: #f5f5f5;
|
border-radius: 12px;
|
margin-right: 8px;
|
cursor: pointer;
|
border: 1px solid #1A6FB8;
|
|
&.active {
|
color: #1677ff;
|
background: #e6f7ff;
|
font-weight: 500;
|
}
|
}
|
}
|
|
.timeout-list-header {
|
display: flex;
|
padding: 10px 16px;
|
border-bottom: 1px solid #f0f0f0;
|
background-color: #f5f5f5;
|
font-size: 14px;
|
color: #333;
|
|
.header-seq {
|
width: 20px;
|
flex-shrink: 0;
|
}
|
|
.header-time {
|
flex: 2;
|
margin-left: 4px;
|
}
|
|
.header-dept {
|
flex: 1;
|
}
|
|
.header-applicant {
|
flex: 1;
|
margin-left: 10px;
|
}
|
|
.header-action {
|
width: 60px;
|
text-align: center;
|
flex-shrink: 0;
|
}
|
}
|
|
.timeout-list {
|
padding: 0 16px;
|
|
.timeout-item {
|
padding: 4px 0;
|
border-bottom: 1px solid #f0f0f0;
|
display: flex;
|
align-items: center;
|
|
&:last-child {
|
border-bottom: none;
|
}
|
|
.item-seq {
|
width: 20px;
|
flex-shrink: 0;
|
font-size: 14px;
|
color: #666;
|
}
|
|
.item-time {
|
flex: 2;
|
|
.time-str {
|
font-size: 14px;
|
color: #666;
|
display: block;
|
margin-left: 4px;
|
}
|
|
.timeout-tag {
|
display: inline-block;
|
padding: 2px 8px;
|
font-size: 12px;
|
border-radius: 10px;
|
margin-top: 4px;
|
|
&.red {
|
color: #f5222d;
|
background: #fff1f0;
|
}
|
|
&.green {
|
color: #52c41a;
|
background: #f6ffed;
|
}
|
}
|
}
|
|
.item-dept {
|
flex: 1;
|
font-size: 13px;
|
color: #333;
|
word-break: break-all;
|
}
|
|
.item-applicant {
|
flex: 1;
|
font-size: 13px;
|
color: #333;
|
word-break: break-all;
|
margin-left: 10px;
|
}
|
|
.item-action {
|
width: 60px;
|
flex-shrink: 0;
|
text-align: center;
|
|
.detail-btn {
|
padding: 2px 12px;
|
font-size: 13px;
|
color: #1677ff;
|
background: #fff;
|
border: 1px solid #1677ff;
|
border-radius: 12px;
|
cursor: pointer;
|
}
|
}
|
}
|
}
|
|
.pagination {
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
margin-top: 16px;
|
padding-bottom: 16px;
|
font-size: 14px;
|
color: #666;
|
|
.pagination-info {
|
margin: 0 16px;
|
}
|
|
.pagination-btn {
|
height: 28px;
|
width: 68px;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
color: #1A6FB8;
|
background: #fff;
|
border: 1px solid #1A6FB8;
|
border-radius: 4px;
|
cursor: pointer;
|
margin: 0 8px;
|
|
&:disabled {
|
opacity: 0.5;
|
cursor: not-allowed;
|
}
|
}
|
}
|
}
|
}
|
|
.area-empty {
|
display: flex;
|
flex-direction: column;
|
justify-content: center;
|
align-items: center;
|
position: relative;
|
padding-bottom: 50px;
|
z-index: 0;
|
|
.area-empty-icon {
|
width: 260px;
|
height: 260px;
|
padding-top: 120px;
|
border: 1px dashed rgba(23, 26, 29, 0.1);
|
border-radius: 8px;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
|
img {
|
width: 120px;
|
height: 120px;
|
object-fit: contain;
|
}
|
}
|
|
.area-loading-text,
|
.area-empty-text {
|
color: rgba(23, 26, 29, 0.4);
|
font-size: 16px;
|
}
|
.area-empty-image {
|
width: 200px;
|
height: 200px;
|
}
|
}
|