<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.slice(0,list.length-1)"/> </el-tab-pane> </el-tabs> </el-row> </div> </template> <script> import SourceStatisList from './sourceStatisList' import SourceStatisChart from './sourceStatisChart' import { sourceList, exportAssessSource } from '@/api/assess/assessDept' export default { name: 'SourceStatis', components: { SourceStatisList, SourceStatisChart }, data() { return { activeName: 'list', // 默认tab dialogVisible: false, timeRange: [], query: { begTime: '', 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: [] } }, watch: { timeRange(val) { if (val && val.length > 0) { this.query.begTime = val[0] this.query.endTime = val[1] } else { this.query.begTime = '' this.query.endTime = '' } } }, mounted() { this.fetchData() }, methods: { handleClick(tab, event) { this.activeName = tab.name if (tab.name === 'chart') { setTimeout(() => { tab.$children[0].chart.resize() }, 50) } }, fetchData() { sourceList(this.query).then(res => { this.list = res.data }) }, search() { this.fetchData() }, exportFile() { // 全屏加载动画 const loading = this.$loading({ lock: true, text: '数据处理中,请稍后...', spinner: 'el-icon-loading', background: 'rgba(0, 0, 0, 0.7)' }) exportAssessSource(this.query).then(res => { loading.close() // 关闭加载动画 console.log('download===', res) const blob = new Blob([res.data]) const downloadElement = document.createElement('a') const href = window.URL.createObjectURL(blob) // 创建下载的链接 downloadElement.href = href downloadElement.download = `来源统计列表.xlsx` // 下载后文件名 document.body.appendChild(downloadElement) downloadElement.click() // 点击下载 document.body.removeChild(downloadElement) // 下载完成移除元素 window.URL.revokeObjectURL(href) // 释放blob对象 }).catch((res) => { loading.close() this.$message.error(res.message) }) } } } </script> <style scoped> </style>