From c366c2288154e60960b6087d887b6e5cd8fccaea Mon Sep 17 00:00:00 2001 From: xlsea Date: Wed, 26 Jun 2024 15:27:43 +0800 Subject: [PATCH] =?UTF-8?q?feat(sj=5Fmap=5Freduce):=20=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=88=B7=E6=96=B0=E9=A2=91=E7=8E=87=E6=94=AF?= =?UTF-8?q?=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/iconify/nonicons.json | 10 + public/iconify/solar.json | 12 + src/components/common/log-drawer.vue | 424 +++++++++++++----- .../modules/common/flow-log-drawer.vue | 131 +----- src/store/modules/log/index.ts | 35 -- src/views/_builtin/log/index.vue | 55 ++- .../batch/modules/job-batch-detail-drawer.vue | 53 +-- .../log/modules/retry-log-detail-drawer.vue | 56 +-- .../task/modules/retry-task-detail-drawer.vue | 3 +- 9 files changed, 383 insertions(+), 396 deletions(-) create mode 100644 public/iconify/nonicons.json create mode 100644 public/iconify/solar.json delete mode 100644 src/store/modules/log/index.ts diff --git a/public/iconify/nonicons.json b/public/iconify/nonicons.json new file mode 100644 index 0000000..370ea42 --- /dev/null +++ b/public/iconify/nonicons.json @@ -0,0 +1,10 @@ +{ + "prefix": "nonicons", + "lastModified": 1702313196, + "aliases": {}, + "icons": { + "loading-16": { + "body": "" + } + } +} diff --git a/public/iconify/solar.json b/public/iconify/solar.json new file mode 100644 index 0000000..7105b94 --- /dev/null +++ b/public/iconify/solar.json @@ -0,0 +1,12 @@ +{ + "prefix": "solar", + "lastModified": 1702314058, + "aliases": {}, + "width": 24, + "height": 24, + "icons": { + "refresh-outline": { + "body": "" + } + } +} diff --git a/src/components/common/log-drawer.vue b/src/components/common/log-drawer.vue index 9a7dd2d..8eea17f 100644 --- a/src/components/common/log-drawer.vue +++ b/src/components/common/log-drawer.vue @@ -1,9 +1,9 @@