|
@@ -1,5 +1,5 @@
|
|
|
<template >
|
|
|
- <el-card>
|
|
|
+ <el-card id='management'>
|
|
|
<div slot="header" class="clearfix">
|
|
|
<searchHeader
|
|
|
:dates="mdate"
|
|
@@ -36,7 +36,7 @@
|
|
|
</el-tooltip>
|
|
|
</span>
|
|
|
<!-- 12345678901.23 -->
|
|
|
- <span> <count-to :endVal="item.percent" :decimals="2" /></span>
|
|
|
+ <span> <count-to :endVal="item.percent" :class="item.dataType == 'TOTAL_AMOUNT'?'blod':''" :decimals="2" /></span>
|
|
|
</statistic-item>
|
|
|
<statistic-item></statistic-item>
|
|
|
</statistic>
|
|
@@ -62,7 +62,7 @@
|
|
|
</el-tooltip>
|
|
|
</span>
|
|
|
<!-- 12345678901.23 -->
|
|
|
- <span> <count-to :endVal="item.percent" :decimals="2" /></span>
|
|
|
+ <span> <count-to :endVal="item.percent" :decimals="2" /></span>
|
|
|
</statistic-item>
|
|
|
</statistic>
|
|
|
<!-- 按月/按天 -->
|
|
@@ -356,14 +356,12 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
|
-// .statistic{
|
|
|
-// /deep/ .statistic-content{
|
|
|
-// cursor: pointer;
|
|
|
-// &.active > span{
|
|
|
-// color: #14928a !important;
|
|
|
-// }
|
|
|
-// }
|
|
|
-// }
|
|
|
+#management .statistic .statistic-content>span {
|
|
|
+ &:first-child{
|
|
|
+ font-size: 14px !important
|
|
|
+ }
|
|
|
+ font-size: 20px !important;
|
|
|
+}
|
|
|
.chioseBox {
|
|
|
position: absolute;
|
|
|
right: 20px;
|
|
@@ -372,4 +370,9 @@ export default {
|
|
|
.wrap {
|
|
|
position: relative;
|
|
|
}
|
|
|
+.blod{
|
|
|
+ font-weight: bold;
|
|
|
+ color: #14928a;
|
|
|
+ font-size: 22px!important;
|
|
|
+}
|
|
|
</style>
|