From 9d6680ad3186974fb735b3440ff6db50d52becb4 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Tue, 11 May 2021 16:32:21 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=8F=92=E4=BB=B6=E7=AE=A1=E7=90=86v0.?= =?UTF-8?q?01?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/api/system/plugin.js | 13 ++ .../src/components/AsyncComponent/index.vue | 53 ++++++ frontend/src/views/system/plugin/index.vue | 162 ++++++++++++++++++ 3 files changed, 228 insertions(+) create mode 100644 frontend/src/api/system/plugin.js create mode 100644 frontend/src/components/AsyncComponent/index.vue create mode 100644 frontend/src/views/system/plugin/index.vue diff --git a/frontend/src/api/system/plugin.js b/frontend/src/api/system/plugin.js new file mode 100644 index 0000000000..cc22401f55 --- /dev/null +++ b/frontend/src/api/system/plugin.js @@ -0,0 +1,13 @@ +import request from '@/utils/request' +const pathMap = { + queryPath: '/api/plugin/pluginGrid/' +} +export function pluginLists(page, size, data) { + return request({ + url: pathMap.queryPath + page + '/' + size, + method: 'post', + data, + loading: true + }) +} + diff --git a/frontend/src/components/AsyncComponent/index.vue b/frontend/src/components/AsyncComponent/index.vue new file mode 100644 index 0000000000..08eae71e02 --- /dev/null +++ b/frontend/src/components/AsyncComponent/index.vue @@ -0,0 +1,53 @@ + + + diff --git a/frontend/src/views/system/plugin/index.vue b/frontend/src/views/system/plugin/index.vue new file mode 100644 index 0000000000..90feda6ea2 --- /dev/null +++ b/frontend/src/views/system/plugin/index.vue @@ -0,0 +1,162 @@ + + + + +