67 lines
1.1 KiB
Vue
67 lines
1.1 KiB
Vue
|
<!--
|
||
|
filename: DoubleRingWrapper.vue
|
||
|
author: liubin
|
||
|
date: 2024-04-17 09:55:12
|
||
|
description:
|
||
|
-->
|
||
|
|
||
|
<template>
|
||
|
<div class="double-ring-wrapper">
|
||
|
<copilot-select :options="cityOptions" />
|
||
|
<div class="flex-1 stretch">
|
||
|
<DoubleRingChartVue />
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import CopilotSelect from "../../select.vue";
|
||
|
import fetcher from "./fetcherDoubleRing";
|
||
|
import DoubleRingChartVue from "./DoubleRingChart.vue";
|
||
|
|
||
|
export default {
|
||
|
name: "DoubleRingWrapper",
|
||
|
components: { CopilotSelect, DoubleRingChartVue },
|
||
|
props: {},
|
||
|
data() {
|
||
|
return {
|
||
|
cityOptions: [
|
||
|
"成都",
|
||
|
"邯郸",
|
||
|
"株洲",
|
||
|
"瑞昌",
|
||
|
"佳木斯",
|
||
|
"凯盛光伏",
|
||
|
"蚌埠兴科",
|
||
|
],
|
||
|
};
|
||
|
},
|
||
|
computed: {},
|
||
|
mounted() {
|
||
|
fetcher.getData().then((res) => {
|
||
|
console.log("getData--->", res);
|
||
|
});
|
||
|
},
|
||
|
methods: {},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.double-ring-wrapper {
|
||
|
height: 100%;
|
||
|
padding: 12px 24px;
|
||
|
display: flex;
|
||
|
gap: 12px;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.flex-1 {
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.stretch {
|
||
|
align-self: stretch;
|
||
|
}
|
||
|
</style>
|