Commit 323b46e0 authored by 赵啸非's avatar 赵啸非

Merge remote-tracking branch 'origin/master'

parents 74b2cda2 fe416c54
...@@ -73,6 +73,11 @@ Vue.config.productionTip = false; ...@@ -73,6 +73,11 @@ Vue.config.productionTip = false;
import Viewer from "v-viewer"; import Viewer from "v-viewer";
import "viewerjs/dist/viewer.css"; import "viewerjs/dist/viewer.css";
Vue.use(Viewer); Vue.use(Viewer);
// echarts
import * as echarts from "echarts";
Vue.prototype.$echarts = echarts;
// 图片懒加载插件 // 图片懒加载插件
import VueLazyload from "vue-lazyload"; import VueLazyload from "vue-lazyload";
Vue.use(VueLazyload, { Vue.use(VueLazyload, {
......
<template> <template>
<div class="h-full w-full flex flex-col"> <div class="h-full w-full flex flex-col">
<div class="total-info"> <div class="total-info">
<span class="mr-[30px]">次数:{{ total ?? 0 }}</span> <span class="mr-[30px]">异常次数:{{ total ?? 0 }}</span>
<span>统计时间段:{{ time[0] }} - {{ time[1] }}</span> <span>统计时间段:{{ time[0] }} - {{ time[1] }}</span>
</div> </div>
<div class="reportforms-out-box"> <div class="reportforms-out-box">
...@@ -56,6 +56,4 @@ export default { ...@@ -56,6 +56,4 @@ export default {
}; };
</script> </script>
<style lang="less" scoped> <style lang="less" scoped></style>
</style>
<template> <template>
<div class="h-full w-full flex flex-col"> <div class="h-full w-full flex flex-col">
<div class="total-info"> <div class="total-info">
<span class="mr-[30px]">次数:{{ total ?? 0 }}</span> <span class="mr-[30px]">异常次数:{{ total ?? 0 }}</span>
<span>统计时间段:{{ time[0] }} - {{ time[1] }}</span> <span>统计时间段:{{ time[0] }} - {{ time[1] }}</span>
</div> </div>
<div class="reportforms-out-box"> <div class="reportforms-out-box">
...@@ -56,6 +56,4 @@ export default { ...@@ -56,6 +56,4 @@ export default {
}; };
</script> </script>
<style lang="less" scoped> <style lang="less" scoped></style>
</style>
<template> <template>
<div class="h-full w-full flex flex-col"> <div class="h-full w-full flex flex-col">
<div class="total-info"> <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> <span>统计时间段:{{ time[0] }} - {{ time[1] }}</span>
</div> </div>
<div class="reportforms-out-box"> <div class="reportforms-out-box">
...@@ -38,6 +38,17 @@ export default { ...@@ -38,6 +38,17 @@ export default {
}; };
}, },
computed: { computed: {
title() {
if (this.$route.path === "/home/dataManagement/pickUp/pickUpRecord") {
return "取件记录";
} else if (
this.$route.path === "/home/dataManagement/pickUp/depositRecord"
) {
return "存件记录";
} else {
return "其他记录";
}
},
tabsList() { tabsList() {
return getItemData(this.$router.options.routes, "name", "pickUp"); return getItemData(this.$router.options.routes, "name", "pickUp");
}, },
...@@ -56,6 +67,4 @@ export default { ...@@ -56,6 +67,4 @@ export default {
}; };
</script> </script>
<style lang="less" scoped> <style lang="less" scoped></style>
</style>
...@@ -2,12 +2,10 @@ ...@@ -2,12 +2,10 @@
<div class="h-full w-full flex flex-col"> <div class="h-full w-full flex flex-col">
<div class="total-info"> <div class="total-info">
<span <span
v-if="$route.path == '/home/dataManagement/queueCall/queueRecord'" v-if="
class="mr-[30px]" $route.path == '/home/dataManagement/queueCall/queueRecord' ||
>取号次数:{{ total ?? 0 }}</span $route.path == '/home/dataManagement/queueCall/numAcquisition'
> "
<span
v-if="$route.path == '/home/dataManagement/queueCall/numAcquisition'"
class="mr-[30px]" class="mr-[30px]"
>取号次数:{{ total ?? 0 }}</span >取号次数:{{ total ?? 0 }}</span
> >
...@@ -79,6 +77,4 @@ export default { ...@@ -79,6 +77,4 @@ export default {
}; };
</script> </script>
<style lang="less" scoped> <style lang="less" scoped></style>
</style>
...@@ -90,7 +90,7 @@ export default { ...@@ -90,7 +90,7 @@ export default {
area: [], area: [],
sign: [], sign: [],
chart: null, chart: null,
dayValue: "", dayValue: "0",
}; };
}, },
components: { components: {
......
...@@ -123,8 +123,6 @@ export default { ...@@ -123,8 +123,6 @@ export default {
.ant-layout-content { .ant-layout-content {
background: #fff; background: #fff;
flex: 1; flex: 1;
overflow-y: auto;
overflow-x: hidden;
} }
} }
&::before { &::before {
...@@ -152,4 +150,3 @@ export default { ...@@ -152,4 +150,3 @@ export default {
} }
} }
</style> </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