From 4edd55cc73b1dee30f85ab9918fa09b74bc1dcaf 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: Thu, 27 Mar 2025 16:23:35 +0800
Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BC=81=E4=B8=9A=E6=89=A7?=
=?UTF-8?q?=E6=B3=95=E8=AE=B0=E5=BD=95=E6=9F=A5=E8=AF=A2=E5=8A=9F=E8=83=BD?=
=?UTF-8?q?=EF=BC=8C=E4=BC=98=E5=8C=96=E6=96=87=E4=BB=B6=E4=B8=8A=E4=BC=A0?=
=?UTF-8?q?=E7=BB=84=E4=BB=B6=EF=BC=8C=E8=B0=83=E6=95=B4=E6=A0=B7=E5=BC=8F?=
=?UTF-8?q?=E5=92=8C=E9=80=BB=E8=BE=91?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/enterpriseinspections/index.ts | 19 +-
.../UploadFile/src/FileUploader.vue | 20 +-
.../EnterpriseInspectionsForm.vue | 11 +-
src/views/enterpriseinspections/detail.vue | 13 +-
src/views/enterprises/index.vue | 74 +++---
src/views/enterprises/update.vue | 216 ++++++++++++++++--
6 files changed, 292 insertions(+), 61 deletions(-)
diff --git a/src/api/enterpriseinspections/index.ts b/src/api/enterpriseinspections/index.ts
index e3d2451..aefadb7 100644
--- a/src/api/enterpriseinspections/index.ts
+++ b/src/api/enterpriseinspections/index.ts
@@ -55,5 +55,22 @@ export const EnterpriseInspectionsApi = {
// 变更人员ID
passOn: async (data: any) => {
return await request.post({ url: `/system/enterprise-inspections/passOn`, data })
- }
+ },
+ /**
+ * 查询企业执法记录
+ */
+ getListByEnterpriseId: async (params: any) => {
+ return await request.get({
+ url: `/system/enterprise-inspections/inspectionsByEnterpriseId`,
+ params
+ })
+ },
+ /**
+ * 获取执法记录日志详情
+ */
+ getLogDetail:async (id: any) => {
+ return await request.get({
+ url: `/system/inspections-log/get?id=${id}`,
+ })
+ },
}
diff --git a/src/components/UploadFile/src/FileUploader.vue b/src/components/UploadFile/src/FileUploader.vue
index 6418993..668a412 100644
--- a/src/components/UploadFile/src/FileUploader.vue
+++ b/src/components/UploadFile/src/FileUploader.vue
@@ -27,11 +27,11 @@