From eafd90c248a7e0560f98c957eaf05cb6e71e2f3b Mon Sep 17 00:00:00 2001 From: odc.xiaohui <xiaohui@Q1> Date: 星期四, 09 二月 2023 10:40:47 +0800 Subject: [PATCH] 2022/2/9 肖辉 部门管理处理 --- src/views/intelligentPatrol/statistics/unlawful/shop/index.vue | 28 +++++++++++++++++++++++++++- 1 files changed, 27 insertions(+), 1 deletions(-) diff --git a/src/views/intelligentPatrol/statistics/unlawful/shop/index.vue b/src/views/intelligentPatrol/statistics/unlawful/shop/index.vue index fb85e1b..33dcc15 100644 --- a/src/views/intelligentPatrol/statistics/unlawful/shop/index.vue +++ b/src/views/intelligentPatrol/statistics/unlawful/shop/index.vue @@ -144,7 +144,33 @@ methods: { ...mapActions(["searchByShop"]), - handleExport(e) {}, + handleExport(e) { + this.$axios({ + method: 'post', + url: `sccg/intelligentPatrol/statistics/export/shop`, + responseType: 'arraybuffer' + }) + .then(res => { + let time = new Date() + let deathdate =time.toLocaleDateString() + const blob = new Blob([res.data], { + type: "application/vnd.ms-excel;charset=utf-8", + }); + if (window.navigator.msSaveBlob) { + window.navigator.msSaveBlob(blob, deathdate+"闂ㄥ墠涓夊寘缁熻" + ".xlsx"); + } else { + const url = window.URL.createObjectURL(blob); + const link = document.createElement("a"); + link.style.display = "none"; + link.href = url; + link.download = deathdate+"闂ㄥ墠涓夊寘缁熻" + ".xlsx"; + document.body.appendChild(link); + link.click(); + document.body.removeChild(link); + } + this.$message.success('鎿嶄綔鎴愬姛'); + }) + }, setTableDataHandle(e) {}, resetTableData(e) {}, // 璁剧疆琛ㄦ牸鏂戦┈绾� -- Gitblit v1.8.0