From c92c5dd81084ebf63c9caa87964f4880e61b182e Mon Sep 17 00:00:00 2001 From: zhanghua <314079846@qq.com> Date: 星期二, 21 二月 2023 13:48:25 +0800 Subject: [PATCH] 添加菜单 --- src/views/intelligentPatrol/statistics/unlawful/type/index.vue | 31 +++++++++++++++++++++++++++++-- 1 files changed, 29 insertions(+), 2 deletions(-) diff --git a/src/views/intelligentPatrol/statistics/unlawful/type/index.vue b/src/views/intelligentPatrol/statistics/unlawful/type/index.vue index 649cc16..95276b4 100644 --- a/src/views/intelligentPatrol/statistics/unlawful/type/index.vue +++ b/src/views/intelligentPatrol/statistics/unlawful/type/index.vue @@ -148,7 +148,34 @@ methods: { ...mapActions(["searchByType"]), - handleExport(e) {}, + handleExport(e) { + this.$axios({ + method: 'post', + url: `sccg/intelligentPatrol/statistics/export/unlawful`, + 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) {}, // 璁剧疆琛ㄦ牸鏂戦┈绾� @@ -339,7 +366,7 @@ // font-size: 10px; .operation { display: flex; - + color: var(--operation-color); .line { padding: 0 5px; } -- Gitblit v1.8.0