32 lines
602 B
Vue
32 lines
602 B
Vue
<template>
|
|
<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>
|
|
</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> |