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) {