7/6 优化 1缴费分析中缴费来源的排序问题,2收入来源的图表渲染问题

This commit is contained in:
Zy
2026-07-06 09:12:44 +08:00
parent 54d467ede7
commit 3a808750ac
4 changed files with 54 additions and 42 deletions

View File

@@ -1,6 +1,6 @@
<template>
<section class="app-main">
<div style="background-color: #f2f1f6; height: 100%">
<div style="background-color: #f2f1f6; height: 100%; overflow-y: auto; display: flex; flex-direction: column">
<router-view v-slot="{ Component, route }" :key="$route.fullPath">
<transition :enter-active-class="animate" mode="out-in">
<keep-alive :include="tagsViewStore.cachedViews">
@@ -55,14 +55,10 @@ function addIframe() {
<style lang="scss" scoped>
.app-main {
/* 50= navbar 50 */
// min-height: calc(100vh - 50px);
flex: 1;
width: 100%;
position: relative;
overflow: hidden;
overflow-y: auto;
background-color: #f2f1f6;
background-color: #dfedff;
}