跟新
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user