|
|
|
@ -1,38 +1,30 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<!--<index-chart v-if="indexStyle==1"></index-chart>-->
|
|
|
|
|
<!--<index-bdc v-if="indexStyle==2"></index-bdc>-->
|
|
|
|
|
<index-large-screen v-if="indexStyle==3"></index-large-screen>
|
|
|
|
|
<index-station v-if="indexStyle==4"></index-station>
|
|
|
|
|
<index-chart v-if="indexStyle==1"></index-chart>
|
|
|
|
|
<index-bdc v-if="indexStyle==2"></index-bdc>-->
|
|
|
|
|
<index-bdc v-if="indexStyle==3"></index-bdc>-->
|
|
|
|
|
<div style="width: 100%;text-align: right;margin-top: 20px">
|
|
|
|
|
请选择首页样式:
|
|
|
|
|
<a-radio-group v-model="indexStyle">
|
|
|
|
|
<a-radio :value="1">统计图表</a-radio>
|
|
|
|
|
<a-radio :value="2">统计图表2</a-radio>
|
|
|
|
|
<a-radio :value="3">户用电站概览</a-radio>
|
|
|
|
|
<a-radio :value="4">锦浪电站概览</a-radio>
|
|
|
|
|
<a-radio :value="2">统计图表3</a-radio>
|
|
|
|
|
</a-radio-group>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
//import IndexChart from './IndexChart'
|
|
|
|
|
//import IndexTask from "./IndexTask"
|
|
|
|
|
import IndexLargeScreen from './IndexLargeScreen'
|
|
|
|
|
import IndexStation from "./IndexStation"
|
|
|
|
|
//import IndexBdc from './IndexBdc'
|
|
|
|
|
|
|
|
|
|
import IndexChart from './IndexChart'
|
|
|
|
|
import IndexTask from "./IndexTask"
|
|
|
|
|
import IndexBdc from './IndexBdc'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "Analysis",
|
|
|
|
|
components: {
|
|
|
|
|
//IndexChart,
|
|
|
|
|
//IndexTask,
|
|
|
|
|
// IndexBdc,
|
|
|
|
|
IndexLargeScreen,
|
|
|
|
|
IndexStation
|
|
|
|
|
|
|
|
|
|
IndexChart,
|
|
|
|
|
IndexTask,
|
|
|
|
|
IndexBdc
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|