Commit a3d5b1c9 by 姜雷

修改数据首页样式

parent 28d41ef7
...@@ -51,7 +51,7 @@ export default { ...@@ -51,7 +51,7 @@ export default {
position: 'right-center', position: 'right-center',
marker: 'square', marker: 'square',
clickable: false, clickable: false,
offsetX: -10, offsetX: -4,
useHtml: true, useHtml: true,
containerTpl: ` containerTpl: `
<div class="g2-legend"> <div class="g2-legend">
...@@ -71,8 +71,8 @@ export default { ...@@ -71,8 +71,8 @@ export default {
class="g2-legend-marker" class="g2-legend-marker"
style="display:inline-block;margin-right:10px;background-color:${color};" style="display:inline-block;margin-right:10px;background-color:${color};"
></i> ></i>
<span class="g2-legend-text">${value}: </span> <span class="g2-legend-text" title="${value}">${value}: </span>
<span>${obj.count}</span> <span>${obj.count.toFixed(2)}</span>
</li> </li>
`; `;
}, },
...@@ -85,6 +85,13 @@ export default { ...@@ -85,6 +85,13 @@ export default {
'g2-legend-list-item': { 'g2-legend-list-item': {
color: '#333', color: '#333',
}, },
'g2-legend-text': {
display: 'inline-block',
width: '100px',
overflow: 'hidden',
'text-overflow': 'ellipsis',
'white-space': 'nowrap',
},
'g2-legend-marker': { 'g2-legend-marker': {
width: '10px', width: '10px',
height: '5px', height: '5px',
...@@ -194,5 +201,13 @@ export default { ...@@ -194,5 +201,13 @@ export default {
max-height: 270px; max-height: 270px;
overflow-y: auto; overflow-y: auto;
} }
.g2-legend-text {
display: inline-block;
width: 100px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
vertical-align: middle;
}
} }
</style> </style>
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
>本年</el-radio> >本年</el-radio>
</el-radio-group> </el-radio-group>
<el-button <el-button
:loading="consumptionLoading||rechargeLoading"
type="primary" type="primary"
@click="fetchAllData" @click="fetchAllData"
>搜索</el-button> >搜索</el-button>
...@@ -60,6 +61,12 @@ export default { ...@@ -60,6 +61,12 @@ export default {
}, },
computed: { computed: {
...mapGetters('Dashboard/customerData', ['filters']), ...mapGetters('Dashboard/customerData', ['filters']),
...mapGetters('Dashboard/customerData/customerConsumption', {
consumptionLoading: 'loading',
}),
...mapGetters('Dashboard/customerData/customerRecharge', {
rechargeLoading: 'loading',
}),
}, },
methods: { methods: {
...mapActions('Dashboard/customerData', ['updateFilters']), ...mapActions('Dashboard/customerData', ['updateFilters']),
......
...@@ -46,6 +46,7 @@ export default { ...@@ -46,6 +46,7 @@ export default {
position: 'right-center', position: 'right-center',
marker: 'square', marker: 'square',
clickable: false, clickable: false,
offsetX: -10,
useHtml: true, useHtml: true,
containerTpl: ` containerTpl: `
<div class="g2-legend"> <div class="g2-legend">
...@@ -71,7 +72,7 @@ export default { ...@@ -71,7 +72,7 @@ export default {
`; `;
}, },
'g2-legend': { 'g2-legend': {
width: '125px', width: '140px',
// left: '-20px', // left: '-20px',
}, },
'g2-legend-list-item': { 'g2-legend-list-item': {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment