From 40e7c29096bb9f88bc90d0943fc4949902af46f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?= =?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com> Date: Wed, 12 Feb 2025 08:52:49 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E5=BD=95=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/inspections/index.js | 24 +++++++++ api/task/index.js | 25 +++++++++ components/cs-dict-tag/index.vue | 87 ++++++++++++++++++++++++++++++++ sub/common/waiting.vue | 19 +++---- 4 files changed, 143 insertions(+), 12 deletions(-) create mode 100644 api/inspections/index.js create mode 100644 api/task/index.js create mode 100644 components/cs-dict-tag/index.vue diff --git a/api/inspections/index.js b/api/inspections/index.js new file mode 100644 index 0000000..b7cd1b2 --- /dev/null +++ b/api/inspections/index.js @@ -0,0 +1,24 @@ +import request from '@/utils/request' + +export const InspectionsApi = { + /** + * 获取列表 + * @param {Object} params + */ + getList: (params) => { + return request({ + url: `/system/enterprise-inspections/page`, + method: 'GET', + params + }) + }, + /** + * 获取详情 + */ + getDetail: (id) => { + return request({ + url: `/system/enterprise-inspections/appGet?id=${id}`, + method: 'GET', + }) + } +} \ No newline at end of file diff --git a/api/task/index.js b/api/task/index.js new file mode 100644 index 0000000..5a13fd8 --- /dev/null +++ b/api/task/index.js @@ -0,0 +1,25 @@ +import request from '@/utils/request' + + +export const TaskApi = { + /** + * 获取列表 + * @param {Object} params + */ + getList: (params) => { + return request({ + url: `/system/task-info/appPage`, + method: 'GET', + params + }) + }, + /** + * 获取详情 + */ + getDetail: (id) => { + return request({ + url: `/system/task-info/appGet?id=${id}`, + method: 'GET', + }) + } +} \ No newline at end of file diff --git a/components/cs-dict-tag/index.vue b/components/cs-dict-tag/index.vue new file mode 100644 index 0000000..b71c487 --- /dev/null +++ b/components/cs-dict-tag/index.vue @@ -0,0 +1,87 @@ + + + + + diff --git a/sub/common/waiting.vue b/sub/common/waiting.vue index df4b6f2..97baaf2 100644 --- a/sub/common/waiting.vue +++ b/sub/common/waiting.vue @@ -1,22 +1,17 @@