diff --git a/src/assets/css/base.css b/src/assets/css/base.css
index b47465f..fe45148 100644
--- a/src/assets/css/base.css
+++ b/src/assets/css/base.css
@@ -23,33 +23,12 @@ li {
height: 100%;
}
/* table样式 */
-.el-table th {
- background: linear-gradient(180deg, #FAFCFC 0%, #EEEEEE 47%, #E7E7E7 100%);
-}
-.el-table--border td {
- border-bottom: 2px solid #D5D5D5;
-}
-.el-table--border td {
- border-right: 2px solid #D5D5D5;
-}
-.el-table th.is-leaf {
- border-right: none !important;
-}
-.el-table tr td:first-child {
- border-left: 2px solid #D5D5D5;
-}
-.el-table thead {
- color: #3D3D42;
-}
-.el-table th>.cell {
- font-size: 16px;
- font-family: PingFangSC-Medium, PingFang SC;
+.el-table--mini td, .el-table--mini th {
+ padding: 3px 0;
color: #3D3D42;
}
-.el-table .el-table__body .cell {
- font-size: 14px;
- font-family: PingFangSC-Medium, PingFang SC;
- color: #5C5A5A;
+.el-table__row:nth-child(even) {
+ background: #F7F7F7;
}
.el-table .el-table__body tr.current-row>td {
background: linear-gradient(180deg, #327e77 0%, #2c9b92 46%, #1e524d 100%);
@@ -57,9 +36,6 @@ li {
.el-table .el-table__body tr.current-row>td div {
color: #fff;
}
-.el-table--mini td, .el-table--mini th{
- padding: 3px 0;
-}
/* button样式 */
.el-button {
color: #5C5A5A;
diff --git a/src/views/plan/workbench/homePage/formal/analysis/commonLineChart.vue b/src/views/plan/workbench/homePage/formal/analysis/commonLineChart.vue
index 9371769..2b0ee67 100644
--- a/src/views/plan/workbench/homePage/formal/analysis/commonLineChart.vue
+++ b/src/views/plan/workbench/homePage/formal/analysis/commonLineChart.vue
@@ -60,7 +60,7 @@ export default {
yAxis: this.maxValue,
label: {
formatter: '{c}%{b}',
- position: 'end'
+ position: 'middle'
}
},
{
@@ -68,7 +68,7 @@ export default {
yAxis: this.minValue,
label: {
formatter: '{c}%{b}',
- position: 'end'
+ position: 'middle'
}
}
]
@@ -96,7 +96,7 @@ export default {
grid: {
top: '10%',
left: '5%',
- right: '15%',
+ right: '0%',
bottom: '0%',
containLabel: true
},
diff --git a/src/views/plan/workbench/homePage/formal/analysis/index.vue b/src/views/plan/workbench/homePage/formal/analysis/index.vue
index f404878..8469ce5 100644
--- a/src/views/plan/workbench/homePage/formal/analysis/index.vue
+++ b/src/views/plan/workbench/homePage/formal/analysis/index.vue
@@ -10,7 +10,7 @@