This commit is contained in:
吴红兵
2026-03-05 20:02:15 +08:00
parent 450e1be7bd
commit 25f31978e5
2 changed files with 124 additions and 72 deletions

View File

@@ -138,7 +138,7 @@
<!-- 部门采购会议纪要预算超过2000元必须上传不区分部门自行采购/学校统一采购 -->
<el-row :gutter="16" v-if="showPurchaseDetailBlocks && dataForm.budget != null && dataForm.budget >= BUDGET_DEPT_SELF_MEETING_MINUTES">
<el-col :span="8" class="mb12">
<el-form-item label="部门采购会议纪要" prop="deptSelfMeetingMinutes">
<el-form-item label="部门采购会议纪要" prop="deptSelfMeetingMinutes" :required="dataForm.budget >= BUDGET_DEPT_SELF_MEETING_MINUTES">
<upload-file
v-model="dataForm.deptSelfMeetingMinutes"
:limit="1"
@@ -391,6 +391,58 @@
</el-button>
</el-form-item>
</el-col>
<!-- 工程类委托采购中心采购:需求模板 -->
<el-col
:span="8"
class="mb12"
v-if="isEntrustCenterChannel && dataForm.entrustCenterType === 'other' && categoryCodePath && categoryCodePath[0] === 'B'"
>
<el-form-item label="需求模板" prop="purchaseRequirementTemplate" required>
<upload-file
v-model="dataForm.purchaseRequirementTemplate"
:limit="1"
:file-type="['doc', 'docx']"
:data="{ fileType: FILE_TYPE_MAP.purchaseRequirementTemplate }"
upload-file-url="/purchase/purchasingfiles/upload"
:disabled="flowFieldDisabled('purchaseRequirementTemplate')"
/>
<el-button
type="primary"
link
icon="Download"
size="small"
@click="downloadTemplate('purchase_requirement')"
style="margin-top: 8px; display: inline-block"
>下载《表1需求模板》模版
</el-button>
</el-form-item>
</el-col>
<!-- 服务类委托采购中心采购(非特殊品目):需求模板 -->
<el-col
:span="8"
class="mb12"
v-if="isEntrustCenterChannel && dataForm.entrustCenterType === 'other' && categoryCodePath && categoryCodePath[0] === 'C'"
>
<el-form-item label="需求模板" prop="purchaseRequirementTemplate" required>
<upload-file
v-model="dataForm.purchaseRequirementTemplate"
:limit="1"
:file-type="['doc', 'docx']"
:data="{ fileType: FILE_TYPE_MAP.purchaseRequirementTemplate }"
upload-file-url="/purchase/purchasingfiles/upload"
:disabled="flowFieldDisabled('purchaseRequirementTemplate')"
/>
<el-button
type="primary"
link
icon="Download"
size="small"
@click="downloadTemplate('purchase_requirement')"
style="margin-top: 8px; display: inline-block"
>下载《表1需求模板》模版
</el-button>
</el-form-item>
</el-col>
<el-col :span="8" class="mb12" v-if="showAutoInviteSelect">
<el-form-item label="是否有推荐供应商" prop="hasSupplier">
<el-radio-group v-model="dataForm.hasSupplier" :disabled="flowFieldDisabled('hasSupplier')">
@@ -1637,7 +1689,7 @@ const dataRules = reactive({
deptSelfMeetingMinutes: [
{
validator: (_rule: any, value: any, callback: (e?: Error) => void) => {
if (dataForm.budget != null && dataForm.budget >= BUDGET_DEPT_SELF_MEETING_MINUTES) {
if (dataForm.budget != null && dataForm.budget >= BUDGET_DEPT_SELF_MEETING_MINUTES.value) {
if (!value || (Array.isArray(value) && value.length === 0) || (typeof value === 'string' && !value.trim())) {
callback(new Error('请上传部门采购会议纪要'));
return;