mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 00:47:19 +08:00
231 lines
5.4 KiB
Vue
231 lines
5.4 KiB
Vue
<template>
|
|
<div class="welcome">
|
|
<el-affix :offset="51">
|
|
<div class="top-content">
|
|
<div class="left-mark">
|
|
<img
|
|
src="https://avatars.githubusercontent.com/u/44761321?s=400&u=30907819abd29bb3779bc247910873e7c7f7c12f&v=4"
|
|
alt
|
|
/>
|
|
<span>{{ greetings }}</span>
|
|
</div>
|
|
<flop v-if="!mobile" />
|
|
</div>
|
|
</el-affix>
|
|
|
|
<!-- 图表 -->
|
|
<el-card class="box-card">
|
|
<el-skeleton style="height: 50vh" :rows="8" :loading="loading" animated>
|
|
<template #default>
|
|
<div id="brokenLine"></div>
|
|
</template>
|
|
</el-skeleton>
|
|
</el-card>
|
|
<!-- <a title="欢迎Star" href="https://github.com/xiaoxian521/CURD-TS" target="_blank">点击打开仓库地址</a> -->
|
|
<!-- <CountTo prefix="$" :startVal="1" :endVal="200" /> -->
|
|
</div>
|
|
</template>
|
|
|
|
<script lang='ts'>
|
|
import flop from "../components/flop/index.vue";
|
|
import CountTo from "../components/countTo/src/index.vue";
|
|
import { ref, computed, onMounted, inject, nextTick } from "vue";
|
|
import { deviceDetection } from "../utils/deviceDetection";
|
|
import { echartsJson } from "../api/mock";
|
|
|
|
let brokenLine: any = null; //折线图实例
|
|
export default {
|
|
name: "welcome",
|
|
components: {
|
|
flop,
|
|
CountTo,
|
|
},
|
|
setup() {
|
|
let mobile = ref(deviceDetection());
|
|
let date: Date = new Date();
|
|
let loading = ref(true);
|
|
let echarts = inject("echarts"); //引入
|
|
|
|
setTimeout(() => {
|
|
loading.value = !loading.value;
|
|
nextTick(()=>{
|
|
initbrokenLine();
|
|
})
|
|
}, 2000);
|
|
|
|
let greetings = computed(() => {
|
|
if (date.getHours() >= 0 && date.getHours() < 12) {
|
|
return "上午阳光明媚,祝你薪水翻倍🌞!";
|
|
} else if (date.getHours() >= 12 && date.getHours() < 18) {
|
|
return "下午小风娇好,愿你青春不老😃!";
|
|
} else {
|
|
return "折一根天使羽毛,愿拂去您的疲惫烦恼忧伤🌛!";
|
|
}
|
|
});
|
|
|
|
let initbrokenLine = (): any => {
|
|
// @ts-ignore
|
|
brokenLine = echarts.init(document.getElementById("brokenLine"));
|
|
brokenLine.clear(); //清除旧画布 重新渲染
|
|
|
|
echartsJson().then(({ info }) => {
|
|
brokenLine.setOption({
|
|
title: {
|
|
text: "上海 空气质量指数",
|
|
left: "1%",
|
|
},
|
|
tooltip: {
|
|
trigger: "axis",
|
|
},
|
|
grid: {
|
|
left: "5%",
|
|
right: "15%",
|
|
bottom: "10%",
|
|
},
|
|
xAxis: {
|
|
data: info.map(function (item) {
|
|
return item[0];
|
|
}),
|
|
},
|
|
yAxis: {},
|
|
toolbox: {
|
|
right: 10,
|
|
feature: {
|
|
dataZoom: {
|
|
yAxisIndex: "none",
|
|
},
|
|
restore: {},
|
|
saveAsImage: {},
|
|
},
|
|
},
|
|
dataZoom: [
|
|
{
|
|
startValue: "2014-06-01",
|
|
},
|
|
{
|
|
type: "inside",
|
|
},
|
|
],
|
|
visualMap: {
|
|
top: 50,
|
|
right: 10,
|
|
pieces: [
|
|
{
|
|
gt: 0,
|
|
lte: 50,
|
|
color: "#93CE07",
|
|
},
|
|
{
|
|
gt: 50,
|
|
lte: 100,
|
|
color: "#FBDB0F",
|
|
},
|
|
{
|
|
gt: 100,
|
|
lte: 150,
|
|
color: "#FC7D02",
|
|
},
|
|
{
|
|
gt: 150,
|
|
lte: 200,
|
|
color: "#FD0100",
|
|
},
|
|
{
|
|
gt: 200,
|
|
lte: 300,
|
|
color: "#AA069F",
|
|
},
|
|
{
|
|
gt: 300,
|
|
color: "#AC3B2A",
|
|
},
|
|
],
|
|
outOfRange: {
|
|
color: "#999",
|
|
},
|
|
},
|
|
series: {
|
|
name: "上海 空气质量指数",
|
|
type: "line",
|
|
data: info.map(function (item) {
|
|
return item[1];
|
|
}),
|
|
markLine: {
|
|
silent: true,
|
|
lineStyle: {
|
|
color: "#333",
|
|
},
|
|
data: [
|
|
{
|
|
yAxis: 50,
|
|
},
|
|
{
|
|
yAxis: 100,
|
|
},
|
|
{
|
|
yAxis: 150,
|
|
},
|
|
{
|
|
yAxis: 200,
|
|
},
|
|
{
|
|
yAxis: 300,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
});
|
|
});
|
|
};
|
|
|
|
onMounted(() => {
|
|
window.addEventListener("resize", () => {
|
|
brokenLine.resize();
|
|
});
|
|
});
|
|
|
|
return {
|
|
greetings,
|
|
mobile,
|
|
loading,
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.welcome {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin-top: 1px;
|
|
.top-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 120px;
|
|
background: #fff;
|
|
padding: 20px;
|
|
.left-mark {
|
|
display: flex;
|
|
align-items: center;
|
|
img {
|
|
display: block;
|
|
width: 72px;
|
|
height: 72px;
|
|
border-radius: 50%;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
}
|
|
.box-card {
|
|
width: 80vw;
|
|
margin: 10px auto;
|
|
position: relative;
|
|
#brokenLine {
|
|
width: 100%;
|
|
height: 50vh;
|
|
}
|
|
}
|
|
}
|
|
</style>
|