lefengyang
2026-08-14 b1fcf9eb27ed1b19eeba0880411555f77a69d558
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<template>
  <div class="dashboard-editor-container">
  </div>
</template>
 
<script>
 
export default {
  name: 'sale-charts',
  components: {
 
  },
  data() {
    return {
 
    }
  },
  async created(){
 
  },
  methods: {
 
  }
}
</script>
 
<style lang="scss" scoped>
.dashboard-editor-container {
  padding: 32px;
  background-color: rgb(240, 242, 245);
  position: relative;
 
  .chart-wrapper {
    background: #fff;
    padding: 16px 16px 0;
    margin-bottom: 32px;
  }
}
 
@media (max-width:1024px) {
  .chart-wrapper {
    padding: 8px;
  }
}
</style>