From 1266813ea18bf0f541d3412998e085c8994df2bb Mon Sep 17 00:00:00 2001 From: dataeaseShu <106045316+dataeaseShu@users.noreply.github.com> Date: Wed, 24 Aug 2022 17:50:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=A8=A1=E7=89=88=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/api/system/log.js | 10 +++ frontend/src/assets/icon_nopicture_filled.png | Bin 0 -> 498 bytes frontend/src/styles/index.scss | 5 ++ .../template/component/TemplateImport.vue | 23 ++++-- .../panel/template/component/TemplateItem.vue | 26 +++++- .../panel/template/component/TemplateList.vue | 4 +- frontend/src/views/panel/template/index.vue | 22 ++++- .../views/system/SysParam/BasicSetting.vue | 3 +- .../SysParam/MapSetting/MapSettingLeft.vue | 2 +- .../system/SysParam/MapSetting/index.vue | 8 +- frontend/src/views/system/plugin/index.vue | 76 ++++++++++++++---- frontend/src/views/system/task/TaskRecord.vue | 19 ++++- frontend/src/views/system/task/filterUser.vue | 2 +- .../views/system/task/filterUserRecord.vue | 1 - 14 files changed, 163 insertions(+), 38 deletions(-) create mode 100644 frontend/src/assets/icon_nopicture_filled.png diff --git a/frontend/src/api/system/log.js b/frontend/src/api/system/log.js index a549d823f8..cd4d9d2a52 100644 --- a/frontend/src/api/system/log.js +++ b/frontend/src/api/system/log.js @@ -26,3 +26,13 @@ export function exportExcel(data) { data }) } + +export function exportExcelRecord(data) { + return request({ + url: '/plugin/task/export', + method: 'post', + loading: true, + responseType: 'blob', + data + }) +} diff --git a/frontend/src/assets/icon_nopicture_filled.png b/frontend/src/assets/icon_nopicture_filled.png new file mode 100644 index 0000000000000000000000000000000000000000..ae86049f86f5bc9514217154ddd696a4e17bb661 GIT binary patch literal 498 zcmVo&dV?N;z0uG_-O3H%2zUbU1cVdl4XRtfJVl9Hya7k(0cgj0#A?BQ(1b?~ z;lFvAe$DUAOy>3*AzDTq`63B7B - - - - - +
+
@@ -220,3 +216,16 @@ export default { background-size: 100% 100% !important; } + + diff --git a/frontend/src/views/panel/template/component/TemplateItem.vue b/frontend/src/views/panel/template/component/TemplateItem.vue index 05891e3f43..0f859e9cb9 100644 --- a/frontend/src/views/panel/template/component/TemplateItem.vue +++ b/frontend/src/views/panel/template/component/TemplateItem.vue @@ -1,6 +1,6 @@