nyzy_vue/src/views/dashboard/Analysis.vue

32 lines
602 B
Vue
Raw Normal View History

2022-04-26 13:51:46 +08:00
<template>
2022-05-12 15:51:01 +08:00
<div style="padding: 10px 0 40px 0;text-align: center;">
<div><img src="/img/homebg.png" ></div>
<div style="margin-top: 30px;font-size: 20px;">欢迎登录吉林省农业资源信息平台</div>
2022-04-26 13:51:46 +08:00
</div>
</template>
<script>
import IndexChart from './IndexChart'
import IndexTask from "./IndexTask"
import IndexBdc from './IndexBdc'
export default {
name: "Analysis",
components: {
IndexChart,
IndexTask,
IndexBdc
},
data() {
return {
indexStyle:1
}
},
created() {
},
methods: {
}
}
</script>