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 @@
- - 查看 + + 放大
- + 删除
@@ -82,7 +82,8 @@ const props = defineProps({ fileType: propTypes.array.def(['image/jpeg', 'image/png', 'image/gif']), // 图片类型限制 ==> 非必传(默认为 ["image/jpeg", "image/png", "image/gif"]) height: propTypes.string.def('150px'), // 组件高度 ==> 非必传(默认为 150px) width: propTypes.string.def('150px'), // 组件宽度 ==> 非必传(默认为 150px) - borderRadius: propTypes.string.def('8px') // 组件边框圆角 ==> 非必传(默认为 8px) + borderRadius: propTypes.string.def('8px'), // 组件边框圆角 ==> 非必传(默认为 8px) + disable: propTypes.bool.def(false) }) const showPlus = ref(false) const { uploadUrl, httpRequest } = useUpload() @@ -138,6 +139,16 @@ watch( { immediate: true, deep: true } ) +watch( + () => props.disable, + (val) => { + if (val) { + showPlus.value = true + } + }, + { immediate: true, deep: true } +) + const emitUpdateModelValue = (fileList: any) => { emit('update:modelValue', fileList) } @@ -284,6 +295,7 @@ defineExpose({ align-items: center; justify-content: center; color: aliceblue; + font-size: 14px; &:hover { color: var(--el-color-primary); transition: var(--el-transition-duration-fast); diff --git a/src/views/enterpriseinspections/EnterpriseInspectionsForm.vue b/src/views/enterpriseinspections/EnterpriseInspectionsForm.vue index 94106b3..91d2e75 100644 --- a/src/views/enterpriseinspections/EnterpriseInspectionsForm.vue +++ b/src/views/enterpriseinspections/EnterpriseInspectionsForm.vue @@ -22,16 +22,21 @@ @@ -454,6 +609,41 @@ onMounted(() => { border-radius: 8px; overflow: hidden; padding: 12px; + .image-wrapper { + position: relative; + height: 130px; + margin-bottom: 12px; + border-radius: 6px; + overflow: hidden; + &:hover { + .operation { + opacity: 1; + } + } + .operation { + cursor: pointer; + opacity: 0; + position: absolute; + inset: 0; + background-color: rgba(0, 0, 0, 0.7); + display: flex; + justify-content: center; + align-items: center; + gap: 20px; + color: #fff; + font-size: 14px; + transition: var(--el-transition-time); + .item { + display: flex; + flex-flow: column nowrap; + align-items: center; + gap: 8px; + &:hover { + color: var(--el-color-primary); + } + } + } + } } .add-prove { width: 200px;