From f267f83dff572e526a6033843bcfe91a8ff6a6c2 Mon Sep 17 00:00:00 2001 From: yangjun <1173114630@qq.com> Date: Thu, 25 Dec 2025 09:21:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../NuConfigSuppliersApplyList.vue | 32 +++++++++++++++++++ .../components/NuConfigSuppliersApplyForm.vue | 10 +++++- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/src/views/invoicing/configSuppliersApply/NuConfigSuppliersApplyList.vue b/src/views/invoicing/configSuppliersApply/NuConfigSuppliersApplyList.vue index d7f3159..d4bf2af 100644 --- a/src/views/invoicing/configSuppliersApply/NuConfigSuppliersApplyList.vue +++ b/src/views/invoicing/configSuppliersApply/NuConfigSuppliersApplyList.vue @@ -4,6 +4,37 @@
+ + + + + + + + + + + + + + + + + 全部 + 待审核 + 审核通过 + 审核驳回 + + + + + + + 查询 + 重置 + + +
@@ -33,6 +64,7 @@ import { downloadFile } from '/@/utils/common/renderUtils'; import NuConfigSuppliersApplyModal from './components/NuConfigSuppliersApplyModal.vue' import { useUserStore } from '/@/store/modules/user'; + import JInput from '/@/components/Form/src/jeecg/components/JInput.vue'; const formRef = ref(); const queryParam = reactive({}); diff --git a/src/views/invoicing/configSuppliersApply/components/NuConfigSuppliersApplyForm.vue b/src/views/invoicing/configSuppliersApply/components/NuConfigSuppliersApplyForm.vue index 54cf26e..eb0073e 100644 --- a/src/views/invoicing/configSuppliersApply/components/NuConfigSuppliersApplyForm.vue +++ b/src/views/invoicing/configSuppliersApply/components/NuConfigSuppliersApplyForm.vue @@ -44,7 +44,8 @@ - + + @@ -81,6 +82,8 @@ import { saveOrUpdate } from '../NuConfigSuppliersApply.api'; import { Form } from 'ant-design-vue'; import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue'; +import JImageUpload from '/@/components/Form/src/jeecg/components/JImageUpload.vue'; +const opeMediaAddress = import.meta.env.VITE_OPE_MEDIA_ADDRESS const props = defineProps({ formDisabled: { type: Boolean, default: false }, formData: { type: Object, default: () => ({})}, @@ -194,6 +197,11 @@ confirmLoading.value = false; return; } + if(model.applyStatus=='3' && model.applyContent==''){ + createMessage.warning('请填写审核备注'); + confirmLoading.value = false; + return; + } await saveOrUpdate(model, isUpdate.value) .then((res) => { if (res.success) {