50 lines
836 B
Vue
50 lines
836 B
Vue
|
|
<template>
|
||
|
|
<div class="main_box">
|
||
|
|
<div class="home_left">
|
||
|
|
</div>
|
||
|
|
<div class="home_center">
|
||
|
|
</div>
|
||
|
|
<div class="home_right">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import echarts from "echarts";
|
||
|
|
import Vue from 'vue'
|
||
|
|
import Echarts from "@/components/echarts";
|
||
|
|
import { Progress,Divider } from 'ant-design-vue';
|
||
|
|
import SvgIcon from '@/components/svgIcon.vue';
|
||
|
|
Vue.use(Progress);
|
||
|
|
Vue.use(Divider);
|
||
|
|
import { fxjIndex } from "@/api/cultApi";
|
||
|
|
import {createOperationLog} from "@/api/api"
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
let self = this
|
||
|
|
return {
|
||
|
|
}
|
||
|
|
},
|
||
|
|
created() {
|
||
|
|
this.init();
|
||
|
|
},
|
||
|
|
components: {
|
||
|
|
Echarts,
|
||
|
|
SvgIcon,
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
init() {
|
||
|
|
this.getData();
|
||
|
|
},
|
||
|
|
search() {
|
||
|
|
this.init();
|
||
|
|
},
|
||
|
|
getData() {
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="less" scoped>
|
||
|
|
</style>
|