未验证 提交 7b0d527b 编写于 作者: 花裤衩 提交者: GitHub

perf[style]: refine dashboard style in mobile (#2060)

上级 0b8baeb1
...@@ -30,7 +30,9 @@ export default { ...@@ -30,7 +30,9 @@ export default {
} }
}, },
mounted() { mounted() {
this.$nextTick(() => {
this.initChart() this.initChart()
})
this.__resizeHandler = debounce(() => { this.__resizeHandler = debounce(() => {
if (this.chart) { if (this.chart) {
this.chart.resize() this.chart.resize()
......
...@@ -45,7 +45,10 @@ export default { ...@@ -45,7 +45,10 @@ export default {
} }
}, },
mounted() { mounted() {
this.$nextTick(() => {
this.initChart() this.initChart()
})
if (this.autoResize) { if (this.autoResize) {
this.__resizeHandler = debounce(() => { this.__resizeHandler = debounce(() => {
if (this.chart) { if (this.chart) {
......
...@@ -73,9 +73,11 @@ export default { ...@@ -73,9 +73,11 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.panel-group { .panel-group {
margin-top: 18px; margin-top: 18px;
.card-panel-col{
.card-panel-col {
margin-bottom: 32px; margin-bottom: 32px;
} }
.card-panel { .card-panel {
height: 108px; height: 108px;
cursor: pointer; cursor: pointer;
...@@ -86,35 +88,45 @@ export default { ...@@ -86,35 +88,45 @@ export default {
background: #fff; background: #fff;
box-shadow: 4px 4px 40px rgba(0, 0, 0, .05); box-shadow: 4px 4px 40px rgba(0, 0, 0, .05);
border-color: rgba(0, 0, 0, .05); border-color: rgba(0, 0, 0, .05);
&:hover { &:hover {
.card-panel-icon-wrapper { .card-panel-icon-wrapper {
color: #fff; color: #fff;
} }
.icon-people { .icon-people {
background: #40c9c6; background: #40c9c6;
} }
.icon-message { .icon-message {
background: #36a3f7; background: #36a3f7;
} }
.icon-money { .icon-money {
background: #f4516c; background: #f4516c;
} }
.icon-shopping { .icon-shopping {
background: #34bfa3 background: #34bfa3
} }
} }
.icon-people { .icon-people {
color: #40c9c6; color: #40c9c6;
} }
.icon-message { .icon-message {
color: #36a3f7; color: #36a3f7;
} }
.icon-money { .icon-money {
color: #f4516c; color: #f4516c;
} }
.icon-shopping { .icon-shopping {
color: #34bfa3 color: #34bfa3
} }
.card-panel-icon-wrapper { .card-panel-icon-wrapper {
float: left; float: left;
margin: 14px 0 0 14px; margin: 14px 0 0 14px;
...@@ -122,25 +134,48 @@ export default { ...@@ -122,25 +134,48 @@ export default {
transition: all 0.38s ease-out; transition: all 0.38s ease-out;
border-radius: 6px; border-radius: 6px;
} }
.card-panel-icon { .card-panel-icon {
float: left; float: left;
font-size: 48px; font-size: 48px;
} }
.card-panel-description { .card-panel-description {
float: right; float: right;
font-weight: bold; font-weight: bold;
margin: 26px; margin: 26px;
margin-left: 0px; margin-left: 0px;
.card-panel-text { .card-panel-text {
line-height: 18px; line-height: 18px;
color: rgba(0, 0, 0, 0.45); color: rgba(0, 0, 0, 0.45);
font-size: 16px; font-size: 16px;
margin-bottom: 12px; margin-bottom: 12px;
} }
.card-panel-num { .card-panel-num {
font-size: 20px; font-size: 20px;
} }
} }
} }
} }
@media (max-width:550px) {
.card-panel-description {
display: none;
}
.card-panel-icon-wrapper {
float: none !important;
width: 100%;
height: 100%;
margin: 0 !important;
.svg-icon {
display: block;
margin: 14px auto !important;
float: none !important;
}
}
}
</style> </style>
...@@ -28,7 +28,9 @@ export default { ...@@ -28,7 +28,9 @@ export default {
} }
}, },
mounted() { mounted() {
this.$nextTick(() => {
this.initChart() this.initChart()
})
this.__resizeHandler = debounce(() => { this.__resizeHandler = debounce(() => {
if (this.chart) { if (this.chart) {
this.chart.resize() this.chart.resize()
...@@ -58,7 +60,6 @@ export default { ...@@ -58,7 +60,6 @@ export default {
bottom: '10', bottom: '10',
data: ['Industries', 'Technology', 'Forex', 'Gold', 'Forecasts'] data: ['Industries', 'Technology', 'Forex', 'Gold', 'Forecasts']
}, },
calculable: true,
series: [ series: [
{ {
name: 'WEEKLY WRITE ARTICLES', name: 'WEEKLY WRITE ARTICLES',
......
...@@ -30,7 +30,9 @@ export default { ...@@ -30,7 +30,9 @@ export default {
} }
}, },
mounted() { mounted() {
this.$nextTick(() => {
this.initChart() this.initChart()
})
this.__resizeHandler = debounce(() => { this.__resizeHandler = debounce(() => {
if (this.chart) { if (this.chart) {
this.chart.resize() this.chart.resize()
......
...@@ -115,4 +115,10 @@ export default { ...@@ -115,4 +115,10 @@ export default {
margin-bottom: 32px; margin-bottom: 32px;
} }
} }
@media (max-width:1024px) {
.chart-wrapper {
padding: 8px;
}
}
</style> </style>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册