123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <div class="statistics">
- <div class="echartTitle">
- <div class="block-title">{{ title }}</div>
- </div>
- <div class="cityList" :style="{ height: height + 'px' }">
- </div>
- </div>
- </template>
- <script>
- export default {
- props: {
- title: {
- type: String,
- },
- height: {
- type: Number,
- },
- cityList: {
- type: Array,
- },
- },
- components: {},
- data() {
- return {};
- },
- computed: {},
- mounted() {},
- methods: {},
- watch: {},
- watch: {},
- beforeDestroy() {},
- };
- </script>
- <style lang="less" scoped>
- .statistics {
- .cityList{
- width: 100%;
- background: rgba(255, 192, 203, 0.445);
- }
- }
- </style>
|