|
@@ -6,16 +6,14 @@ import {
|
|
|
ReLine,
|
|
|
ReBar
|
|
|
} from "/@/components/ReCharts/index";
|
|
|
-import { useAppStoreHook } from "/@/store/modules/app";
|
|
|
-import { ref, shallowRef, computed, onBeforeMount } from "vue";
|
|
|
+import { ref, computed } from "vue";
|
|
|
|
|
|
const date: Date = new Date();
|
|
|
let loading = ref<boolean>(true);
|
|
|
-const componentList = shallowRef([]);
|
|
|
|
|
|
setTimeout(() => {
|
|
|
loading.value = !loading.value;
|
|
|
-}, 500);
|
|
|
+}, 800);
|
|
|
|
|
|
let greetings = computed(() => {
|
|
|
if (date.getHours() >= 0 && date.getHours() < 12) {
|
|
@@ -27,56 +25,6 @@ let greetings = computed(() => {
|
|
|
}
|
|
|
});
|
|
|
|
|
|
-onBeforeMount(() => {
|
|
|
- if (useAppStoreHook().device === "mobile") {
|
|
|
- componentList.value = [
|
|
|
- {
|
|
|
- width: "20em",
|
|
|
- title: "GitHub饼图信息",
|
|
|
- component: RePie
|
|
|
- },
|
|
|
- {
|
|
|
- width: "20em",
|
|
|
- title: "GitHub折线图信息",
|
|
|
- component: ReLine
|
|
|
- },
|
|
|
- {
|
|
|
- width: "20em",
|
|
|
- title: "GitHub柱状图信息",
|
|
|
- component: ReBar
|
|
|
- }
|
|
|
- ];
|
|
|
- } else {
|
|
|
- componentList.value = [
|
|
|
- {
|
|
|
- width: "43em",
|
|
|
- title: "GitHub信息",
|
|
|
- component: ReGithub
|
|
|
- },
|
|
|
- {
|
|
|
- width: "43em",
|
|
|
- title: "GitHub滚动信息",
|
|
|
- component: ReInfinite
|
|
|
- },
|
|
|
- {
|
|
|
- width: "28.28em",
|
|
|
- title: "GitHub饼图信息",
|
|
|
- component: RePie
|
|
|
- },
|
|
|
- {
|
|
|
- width: "28.28em",
|
|
|
- title: "GitHub折线图信息",
|
|
|
- component: ReLine
|
|
|
- },
|
|
|
- {
|
|
|
- width: "28.28em",
|
|
|
- title: "GitHub柱状图信息",
|
|
|
- component: ReBar
|
|
|
- }
|
|
|
- ];
|
|
|
- }
|
|
|
-});
|
|
|
-
|
|
|
const openDepot = (): void => {
|
|
|
window.open("https://github.com/xiaoxian521/vue-pure-admin");
|
|
|
};
|
|
@@ -95,27 +43,177 @@ const openDepot = (): void => {
|
|
|
</div>
|
|
|
</el-card>
|
|
|
|
|
|
- <el-space class="space" wrap size="large">
|
|
|
- <el-skeleton
|
|
|
- v-for="(item, key) in componentList"
|
|
|
- :key="key"
|
|
|
- animated
|
|
|
- :rows="7"
|
|
|
- :loading="loading"
|
|
|
- :class="$style.size"
|
|
|
- :style="{ width: item.width }"
|
|
|
+ <el-row :gutter="24" style="margin: 20px">
|
|
|
+ <el-col
|
|
|
+ :xs="24"
|
|
|
+ :sm="24"
|
|
|
+ :md="12"
|
|
|
+ :lg="12"
|
|
|
+ :xl="12"
|
|
|
+ style="margin-bottom: 20px"
|
|
|
+ v-motion
|
|
|
+ :initial="{
|
|
|
+ opacity: 0,
|
|
|
+ y: 100
|
|
|
+ }"
|
|
|
+ :enter="{
|
|
|
+ opacity: 1,
|
|
|
+ y: 0,
|
|
|
+ transition: {
|
|
|
+ delay: 200
|
|
|
+ }
|
|
|
+ }"
|
|
|
+ >
|
|
|
+ <el-card>
|
|
|
+ <template #header>
|
|
|
+ <div>
|
|
|
+ <span>GitHub信息</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <el-skeleton animated :rows="7" :loading="loading">
|
|
|
+ <template #default>
|
|
|
+ <ReGithub />
|
|
|
+ </template>
|
|
|
+ </el-skeleton>
|
|
|
+ </el-card>
|
|
|
+ </el-col>
|
|
|
+
|
|
|
+ <el-col
|
|
|
+ :xs="24"
|
|
|
+ :sm="24"
|
|
|
+ :md="12"
|
|
|
+ :lg="12"
|
|
|
+ :xl="12"
|
|
|
+ style="margin-bottom: 20px"
|
|
|
+ v-motion
|
|
|
+ :initial="{
|
|
|
+ opacity: 0,
|
|
|
+ y: 100
|
|
|
+ }"
|
|
|
+ :enter="{
|
|
|
+ opacity: 1,
|
|
|
+ y: 0,
|
|
|
+ transition: {
|
|
|
+ delay: 200
|
|
|
+ }
|
|
|
+ }"
|
|
|
+ >
|
|
|
+ <el-card>
|
|
|
+ <template #header>
|
|
|
+ <div>
|
|
|
+ <span>GitHub滚动信息</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <el-skeleton animated :rows="7" :loading="loading">
|
|
|
+ <template #default>
|
|
|
+ <ReInfinite />
|
|
|
+ </template>
|
|
|
+ </el-skeleton>
|
|
|
+ </el-card>
|
|
|
+ </el-col>
|
|
|
+
|
|
|
+ <el-col
|
|
|
+ :xs="24"
|
|
|
+ :sm="24"
|
|
|
+ :md="12"
|
|
|
+ :lg="8"
|
|
|
+ :xl="8"
|
|
|
+ style="margin-bottom: 20px"
|
|
|
+ v-motion
|
|
|
+ :initial="{
|
|
|
+ opacity: 0,
|
|
|
+ y: 100
|
|
|
+ }"
|
|
|
+ :enter="{
|
|
|
+ opacity: 1,
|
|
|
+ y: 0,
|
|
|
+ transition: {
|
|
|
+ delay: 400
|
|
|
+ }
|
|
|
+ }"
|
|
|
+ >
|
|
|
+ <el-card>
|
|
|
+ <template #header>
|
|
|
+ <div>
|
|
|
+ <span>GitHub饼图信息</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <el-skeleton animated :rows="7" :loading="loading">
|
|
|
+ <template #default>
|
|
|
+ <RePie />
|
|
|
+ </template>
|
|
|
+ </el-skeleton>
|
|
|
+ </el-card>
|
|
|
+ </el-col>
|
|
|
+
|
|
|
+ <el-col
|
|
|
+ :xs="24"
|
|
|
+ :sm="24"
|
|
|
+ :md="12"
|
|
|
+ :lg="8"
|
|
|
+ :xl="8"
|
|
|
+ style="margin-bottom: 20px"
|
|
|
+ v-motion
|
|
|
+ :initial="{
|
|
|
+ opacity: 0,
|
|
|
+ y: 100
|
|
|
+ }"
|
|
|
+ :enter="{
|
|
|
+ opacity: 1,
|
|
|
+ y: 0,
|
|
|
+ transition: {
|
|
|
+ delay: 400
|
|
|
+ }
|
|
|
+ }"
|
|
|
>
|
|
|
- <template #default>
|
|
|
- <div
|
|
|
- :class="['echart-card', $style.size]"
|
|
|
- :style="{ width: item.width }"
|
|
|
- >
|
|
|
- <h4>{{ item.title }}</h4>
|
|
|
- <component :is="item.component"></component>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-skeleton>
|
|
|
- </el-space>
|
|
|
+ <el-card>
|
|
|
+ <template #header>
|
|
|
+ <div>
|
|
|
+ <span>GitHub折线图信息</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <el-skeleton animated :rows="7" :loading="loading">
|
|
|
+ <template #default>
|
|
|
+ <ReLine />
|
|
|
+ </template>
|
|
|
+ </el-skeleton>
|
|
|
+ </el-card>
|
|
|
+ </el-col>
|
|
|
+
|
|
|
+ <el-col
|
|
|
+ :xs="24"
|
|
|
+ :sm="24"
|
|
|
+ :md="24"
|
|
|
+ :lg="8"
|
|
|
+ :xl="1"
|
|
|
+ style="margin-bottom: 20px"
|
|
|
+ v-motion
|
|
|
+ :initial="{
|
|
|
+ opacity: 0,
|
|
|
+ y: 100
|
|
|
+ }"
|
|
|
+ :enter="{
|
|
|
+ opacity: 1,
|
|
|
+ y: 0,
|
|
|
+ transition: {
|
|
|
+ delay: 400
|
|
|
+ }
|
|
|
+ }"
|
|
|
+ >
|
|
|
+ <el-card>
|
|
|
+ <template #header>
|
|
|
+ <div>
|
|
|
+ <span>GitHub柱状图信息</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <el-skeleton animated :rows="7" :loading="loading">
|
|
|
+ <template #default>
|
|
|
+ <ReBar />
|
|
|
+ </template>
|
|
|
+ </el-skeleton>
|
|
|
+ </el-card>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -126,8 +224,11 @@ const openDepot = (): void => {
|
|
|
</style>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+.main-content {
|
|
|
+ margin: 0;
|
|
|
+}
|
|
|
+
|
|
|
.welcome {
|
|
|
- width: 100%;
|
|
|
height: 100%;
|
|
|
|
|
|
.top-content {
|
|
@@ -155,22 +256,5 @@ const openDepot = (): void => {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- .space {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- margin-left: 8px;
|
|
|
- padding: 10px;
|
|
|
-
|
|
|
- .echart-card {
|
|
|
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
|
|
|
-
|
|
|
- h4 {
|
|
|
- margin: 0;
|
|
|
- padding: 20px;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
</style>
|