<template> <div class="app-container"> <div class="search-div"> <el-form ref="selectForm" :inline="true" class="form-container"> <el-row> <el-form-item class="selectForm-container-item" prop="beginDate"> <el-date-picker v-model="timeRange" :picker-options="pickerOptions" type="daterange" range-separator="至" value-format="yyyy-MM-dd" start-placeholder="开始日期" end-placeholder="结束日期"/> </el-form-item> <el-button class="filter-item" type="primary" icon="el-icon-data-analysis" @click="search">统计</el-button> <el-button class="filter-item" icon="el-icon-document" @click="exportFile">报表</el-button> </el-row> </el-form> </div> <el-row> <el-tabs v-model="activeName" type="card" @tab-click="handleClick"> <el-tab-pane name="list"> <span slot="label"><i class="el-icon-s-fold"/> 列表模式</span> <source-statis-list :list="list"/> </el-tab-pane> <el-tab-pane name="chart"> <span slot="label"><i class="el-icon-s-data"/> 图表模式</span> <source-statis-chart :list="list"/> </el-tab-pane> </el-tabs> </el-row> </div> </template> <script> import SourceStatisList from './sourceStatisList' import SourceStatisChart from './sourceStatisChart' export default { name: 'SourceStatis', components: { SourceStatisList, SourceStatisChart }, data() { return { activeName: 'list', // 默认tab dialogVisible: false, timeRange: [], query: { beginTime: '', endTime: '' }, pickerOptions: { shortcuts: [{ text: '最近一周', onClick(picker) { const end = new Date() const start = new Date() start.setTime(start.getTime() - 3600 * 1000 * 24 * 7) picker.$emit('pick', [start, end]) } }, { text: '最近一个月', onClick(picker) { const end = new Date() const start = new Date() start.setTime(start.getTime() - 3600 * 1000 * 24 * 30) picker.$emit('pick', [start, end]) } }, { text: '最近三个月', onClick(picker) { const end = new Date() const start = new Date() start.setTime(start.getTime() - 3600 * 1000 * 24 * 90) picker.$emit('pick', [start, end]) } }] }, list: [ { sourceName: '渣土车辆管理', upNum: 516, eventNum: 516, partNum: 0 }, { sourceName: '终端-普通上报', upNum: 44302, eventNum: 41270, partNum: 3032 }, { sourceName: '视频监控', upNum: 22267, eventNum: 22267, partNum: 0 } ] } }, watch: { timeRange(val) { if (val && val.length > 0) { this.query.beginTime = val[0] this.query.endTime = val[1] } else { this.query.beginTime = '' this.query.endTime = '' } } }, mounted() { }, methods: { handleClick(tab, event) { this.activeName = tab.name if (tab.name === 'chart') { setTimeout(() => { tab.$children[0].chart.resize() }, 50) } }, search() { }, exportFile() { } } } </script> <style scoped> </style>