Commit 589b2850 authored by “yiyousong”'s avatar “yiyousong”

perf: 优化报表

parent b50b3b02
......@@ -73,6 +73,11 @@ Vue.config.productionTip = false;
import Viewer from "v-viewer";
import "viewerjs/dist/viewer.css";
Vue.use(Viewer);
// echarts
import * as echarts from "echarts";
Vue.prototype.$echarts = echarts;
// 图片懒加载插件
import VueLazyload from "vue-lazyload";
Vue.use(VueLazyload, {
......
<template>
<div class="h-full w-full flex flex-col">
<div class="total-info">
<span class="mr-[30px]">次数:{{ total ?? 0 }}</span>
<span class="mr-[30px]">异常次数:{{ total ?? 0 }}</span>
<span>统计时间段:{{ time[0] }} - {{ time[1] }}</span>
</div>
<div class="reportforms-out-box">
......
<template>
<div class="h-full w-full flex flex-col">
<div class="total-info">
<span class="mr-[30px]">次数:{{ total ?? 0 }}</span>
<span class="mr-[30px]">异常次数:{{ total ?? 0 }}</span>
<span>统计时间段:{{ time[0] }} - {{ time[1] }}</span>
</div>
<div class="reportforms-out-box">
......
<template>
<div class="h-full w-full flex flex-col">
<div class="total-info">
<span class="mr-[30px]">次数{{ total ?? 0 }}</span>
<span class="mr-[30px]">{{ title }}{{ total ?? 0 }}</span>
<span>统计时间段:{{ time[0] }} - {{ time[1] }}</span>
</div>
<div class="reportforms-out-box">
......@@ -38,6 +38,17 @@ export default {
};
},
computed: {
title() {
if (this.$route.path === "/home/dataManagement/pickUp/pickUpRecord") {
return "取件记录";
} else if (
this.$route.path === "/home/dataManagement/pickUp/depositRecord"
) {
return "存件记录";
} else {
return "其他记录";
}
},
tabsList() {
return getItemData(this.$router.options.routes, "name", "pickUp");
},
......@@ -56,6 +67,4 @@ export default {
};
</script>
<style lang="less" scoped>
</style>
<style lang="less" scoped></style>
......@@ -2,7 +2,10 @@
<div class="h-full w-full flex flex-col">
<div class="total-info">
<span
v-if="$route.path == '/home/dataManagement/queueCall/queueRecord'"
v-if="
$route.path == '/home/dataManagement/queueCall/queueRecord' ||
$route.path == '/home/dataManagement/queueCall/numAcquisition'
"
class="mr-[30px]"
>取号次数:{{ total ?? 0 }}</span
>
......@@ -74,6 +77,4 @@ export default {
};
</script>
<style lang="less" scoped>
</style>
<style lang="less" scoped></style>
......@@ -12,8 +12,8 @@
>
</a-range-picker>
<a-select v-model="day">
<a-select-option value="0"> 今天 </a-select-option>
<a-select-option value="1"> 近7天 </a-select-option>
<a-select-option value="0"> 今天 </a-select-option>
<a-select-option value="2"> 近30天 </a-select-option>
<a-select-option value="3"> 近3月 </a-select-option>
<a-select-option value="4"> 本年度 </a-select-option>
......@@ -90,7 +90,7 @@ export default {
area: [],
sign: [],
chart: null,
dayValue: "",
dayValue: "0",
};
},
components: {
......
<template>
<div id="dataAnalyse-Container">
<a-layout>
<a-layout>
<a-layout-sider width="200" style="background: #fff">
<a-menu
......@@ -37,7 +36,6 @@
</a-layout-content>
</a-layout>
</a-layout>
</a-layout>
</div>
</template>
......@@ -123,8 +121,7 @@ export default {
.ant-layout-content {
background: #fff;
flex: 1;
overflow-y: auto;
overflow-x: hidden;
// overflow: auto;
}
}
&::before {
......@@ -152,4 +149,3 @@ export default {
}
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment