供应商审核:

1、调整样式细节:边距等
2、审核时审核备注必填
This commit is contained in:
1378012178@qq.com 2026-01-14 16:02:09 +08:00
parent 4d2371d9a3
commit 9f0d625d4b
3 changed files with 70 additions and 68 deletions

View File

@ -102,7 +102,7 @@
xs:24,
sm:4,
xl:6,
xxl:4
xxl:6
});
const wrapperCol = reactive({
xs: 24,
@ -231,7 +231,7 @@
padding: 0;
.table-page-search-submitButtons {
display: block;
margin-bottom: 24px;
margin-bottom: 14px;
white-space: nowrap;
}
.query-group-cust{

View File

@ -118,6 +118,7 @@ const opeMediaAddress = import.meta.env.VITE_OPE_MEDIA_ADDRESS
const confirmLoading = ref<boolean>(false);
//
const validatorRules = reactive({
applyContent: [{ required: true, message: '请输入审核备注!' }],
});
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: false });
@ -226,6 +227,6 @@ const opeMediaAddress = import.meta.env.VITE_OPE_MEDIA_ADDRESS
<style lang="less" scoped>
.antd-modal-form {
padding: 14px;
padding: 0px;
}
</style>

View File

@ -1,8 +1,9 @@
<template>
<a-drawer :title="title" :width="width" v-model:visible="visible" :closable="true"
:footer-style="{ textAlign: 'right' }" @close="handleCancel">
<NuConfigSuppliersApplyForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false"></NuConfigSuppliersApplyForm>
:footer-style="{ textAlign: 'right' }" :bodyStyle="{ padding: '14px' }" @close="handleCancel">
<NuConfigSuppliersApplyForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false">
</NuConfigSuppliersApplyForm>
<template #footer>
<a-button type="primary" style="margin-right: 8px" @click="handleCancel">关闭</a-button>
<a-button type="primary" @click="handleOk" v-if="!disableSubmit">确认</a-button>