zqyy-yl/src/pages/elder/home.vue

50 lines
836 B
Vue
Raw Normal View History

2023-08-25 10:45:28 +08:00
<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>