|
@@ -1,59 +1,127 @@
|
|
|
<template>
|
|
|
<div class="statistics-tabs">
|
|
|
- <div
|
|
|
- v-for="(tab, index) in tabList"
|
|
|
- :key="tab.path"
|
|
|
- :class="['tab-bar', { 'tab-active': activeIndex === index }]"
|
|
|
- @click="clickHandler(index)"
|
|
|
+ <el-row
|
|
|
+ :gutter="16"
|
|
|
+ type="flex"
|
|
|
>
|
|
|
- <img
|
|
|
- class="tab-icon"
|
|
|
- :src="activeIndex === index ? tab.activeIcon : tab.defaultIcon"
|
|
|
- :alt="tab.title"
|
|
|
+ <el-col
|
|
|
+ v-for="(tab, index) in tabList"
|
|
|
+ :key="index"
|
|
|
+ :span="4"
|
|
|
>
|
|
|
- <span class="tab-title">{{ tab.title }}</span>
|
|
|
- </div>
|
|
|
+ <el-dropdown
|
|
|
+ v-if="tab.children && tab.children.length"
|
|
|
+ placement="bottom"
|
|
|
+ @command="commandHandler"
|
|
|
+ >
|
|
|
+ <div :class="['tab-bar', { 'tab-active': activeIndex === index }]">
|
|
|
+ <img
|
|
|
+ class="tab-icon"
|
|
|
+ :src="activeIndex === index ? activeIcon : defaultIcon"
|
|
|
+ :alt="tab.title"
|
|
|
+ >
|
|
|
+ <el-tooltip
|
|
|
+ :content="tab.title"
|
|
|
+ placement="top"
|
|
|
+ >
|
|
|
+ <span class="tab-title">{{ tab.title }}</span>
|
|
|
+ </el-tooltip>
|
|
|
+ <i class="icon-arrow el-icon-caret-bottom" />
|
|
|
+ </div>
|
|
|
+ <el-dropdown-menu slot="dropdown">
|
|
|
+ <el-dropdown-item
|
|
|
+ v-for="(childTab, childIndex) in tab.children"
|
|
|
+ :key="childIndex"
|
|
|
+ :command="{ path: childTab.path, parentIndex: index }"
|
|
|
+ >{{ childTab.title }}</el-dropdown-item>
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </el-dropdown>
|
|
|
+ <div
|
|
|
+ v-else
|
|
|
+ :class="['tab-bar tab-bar-single', { 'tab-active': activeIndex === index }]"
|
|
|
+ @click="clickHandler(index)"
|
|
|
+ >
|
|
|
+ <img
|
|
|
+ class="tab-icon"
|
|
|
+ :src="activeIndex === index ? activeIcon : defaultIcon"
|
|
|
+ :alt="tab.title"
|
|
|
+ >
|
|
|
+ <el-tooltip
|
|
|
+ :content="tab.title"
|
|
|
+ placement="top"
|
|
|
+ >
|
|
|
+ <span class="tab-title">{{ tab.title }}</span>
|
|
|
+ </el-tooltip>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-const defaultIcon = require('@/assets/nav/ic_statistical_top_default.png')
|
|
|
-const activeIcon = require('@/assets/nav/ic_statistical_top_check.png')
|
|
|
-
|
|
|
export default {
|
|
|
name: 'StatisticsTabs',
|
|
|
data() {
|
|
|
return {
|
|
|
+ defaultIcon: require('@/assets/nav/ic_statistical_top_default.png'),
|
|
|
+ activeIcon: require('@/assets/nav/ic_statistical_top_check.png'),
|
|
|
tabList: [
|
|
|
{
|
|
|
- path: '/statisticsCharts/flight',
|
|
|
- title: '航班量统计',
|
|
|
- defaultIcon,
|
|
|
- activeIcon
|
|
|
+ title: '公司行李相关总统计',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/statisticsCharts/flight',
|
|
|
+ title: '航班量统计'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/statisticsCharts/baggage',
|
|
|
+ title: '行李量统计'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/statisticsCharts/baggagePassenger',
|
|
|
+ title: '行李旅客量统计'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/statisticsCharts/specialBaggage',
|
|
|
+ title: '特殊行李量统计'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/statisticsCharts/baggageAverage',
|
|
|
+ title: '平均行李量统计'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/statisticsCharts/abnormalBaggage',
|
|
|
+ title: '异常行李量统计'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/statisticsCharts/complaintBaggage',
|
|
|
+ title: '投诉行李量统计'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/statisticsCharts/compensationBaggage',
|
|
|
+ title: '赔偿行李量统计'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/statisticsCharts/compensation',
|
|
|
+ title: '赔偿金额统计'
|
|
|
+ }
|
|
|
+ ]
|
|
|
},
|
|
|
{
|
|
|
- path: '/statisticsCharts/node',
|
|
|
- title: '扫描节点与位置分析',
|
|
|
- defaultIcon,
|
|
|
- activeIcon
|
|
|
+ title: '旅客分类统计'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '航班分类相关统计'
|
|
|
},
|
|
|
{
|
|
|
- path: '/statisticsCharts/baggage',
|
|
|
- title: '行李量统计',
|
|
|
- defaultIcon,
|
|
|
- activeIcon
|
|
|
+ path: '/statisticsCharts/node',
|
|
|
+ title: '扫描节点与位置分析'
|
|
|
},
|
|
|
{
|
|
|
- path: '/statisticsCharts/specialBaggage',
|
|
|
- title: '特殊行李量统计',
|
|
|
- defaultIcon,
|
|
|
- activeIcon
|
|
|
+ title: '报表统计'
|
|
|
},
|
|
|
{
|
|
|
- path: '/statisticsCharts/passenger',
|
|
|
- title: '行李旅客量统计',
|
|
|
- defaultIcon,
|
|
|
- activeIcon
|
|
|
+ title: '特殊赔偿异常分类统计'
|
|
|
}
|
|
|
],
|
|
|
activeIndex: null
|
|
@@ -61,20 +129,46 @@ export default {
|
|
|
},
|
|
|
watch: {
|
|
|
'$route.path': {
|
|
|
- handler(val) {
|
|
|
- this.activeIndex = this.tabList.findIndex(tab => tab.path === val)
|
|
|
+ handler(path) {
|
|
|
+ let activeIndex = null
|
|
|
+ this.tabList.some((tab, index) => {
|
|
|
+ if (tab.path === path) {
|
|
|
+ activeIndex = index
|
|
|
+ return true
|
|
|
+ } else if (tab.children?.length) {
|
|
|
+ const matchedChildTab = tab.children.find(childTab => childTab.path === path)
|
|
|
+ if (matchedChildTab) {
|
|
|
+ activeIndex = index
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ this.activeIndex = activeIndex
|
|
|
},
|
|
|
immediate: true
|
|
|
},
|
|
|
- activeIndex(val) {
|
|
|
- this.$router.push({
|
|
|
- path: this.tabList[val].path
|
|
|
- })
|
|
|
+ activeIndex(index) {
|
|
|
+ const path = this.tabList[index].path
|
|
|
+ if (path) {
|
|
|
+ this.$router.push({
|
|
|
+ path
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ commandHandler({ path, parentIndex }) {
|
|
|
+ this.activeIndex = parentIndex
|
|
|
+ this.$router.push({
|
|
|
+ path
|
|
|
+ })
|
|
|
+ },
|
|
|
clickHandler(index) {
|
|
|
- this.activeIndex = index
|
|
|
+ if (this.tabList[index].path) {
|
|
|
+ this.activeIndex = index
|
|
|
+ } else {
|
|
|
+ this.$message.info('开发中')
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -82,36 +176,63 @@ export default {
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.statistics-tabs {
|
|
|
- display: flex;
|
|
|
- .tab-bar {
|
|
|
- min-width: 216px;
|
|
|
- height: 56px;
|
|
|
- background-color: #ffffff;
|
|
|
- padding-left: 24px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
|
|
|
- border-radius: 4px;
|
|
|
- cursor: pointer;
|
|
|
- &:not(:last-child) {
|
|
|
- margin-right: 16px;
|
|
|
- }
|
|
|
- .tab-icon {
|
|
|
- width: 16px;
|
|
|
- height: 16px;
|
|
|
- margin-right: 15px;
|
|
|
- }
|
|
|
- .tab-title {
|
|
|
- font-size: 16px;
|
|
|
- font-family: Helvetica 'Microsoft YaHei';
|
|
|
- font-weight: bold;
|
|
|
- color: #101116;
|
|
|
+ > .el-row > .el-col {
|
|
|
+ max-width: 232px;
|
|
|
+ min-width: 186px;
|
|
|
+ .el-dropdown {
|
|
|
+ width: 100%;
|
|
|
}
|
|
|
- &.tab-active {
|
|
|
- background-color: #2d67e3;
|
|
|
+ .tab-bar {
|
|
|
+ width: 100%;
|
|
|
+ height: 56px;
|
|
|
+ background-color: #ffffff;
|
|
|
+ padding-left: 16px;
|
|
|
+ padding-right: 16px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
|
|
|
+ border-radius: 4px;
|
|
|
+ &-single {
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ &:not(:last-child) {
|
|
|
+ margin-right: 16px;
|
|
|
+ }
|
|
|
+ .tab-icon {
|
|
|
+ width: 14px;
|
|
|
+ height: 14px;
|
|
|
+ }
|
|
|
.tab-title {
|
|
|
+ padding-left: 12px;
|
|
|
+ padding-right: 8px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: Helvetica, 'Microsoft YaHei';
|
|
|
+ font-weight: bold;
|
|
|
+ color: #101116;
|
|
|
+ letter-spacing: 0;
|
|
|
+ overflow: hidden;
|
|
|
+ white-space: nowrap;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ }
|
|
|
+ &.tab-active {
|
|
|
+ background-color: #2d67e3;
|
|
|
+ .tab-title {
|
|
|
+ color: #ffffff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .icon-arrow {
|
|
|
+ position: absolute;
|
|
|
+ right: 16px;
|
|
|
+ color: #101116;
|
|
|
+ font-size: 14px;
|
|
|
+ transition: transform 0.3s;
|
|
|
+ }
|
|
|
+ &.tab-active .icon-arrow {
|
|
|
color: #ffffff;
|
|
|
}
|
|
|
+ &:hover .icon-arrow {
|
|
|
+ transform: rotate(180deg);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|