fix: 移除预期成果形式相关代码
This commit is contained in:
@@ -3,11 +3,11 @@
|
||||
<el-form :model="localFormData" ref="summaryForm" :rules="rules">
|
||||
<baseTitle title="预期知识产权"></baseTitle>
|
||||
<el-row gutter="20" style="margin-bottom: -18px;margin-left: 5px">
|
||||
<el-col :span="6">
|
||||
<el-form-item label="预期成果形式" prop="resultForm">
|
||||
<span>{{ filterDict(cacheStore.getDict('result_form'), localFormData.resultForm) }}</span>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<!-- <el-col :span="6">-->
|
||||
<!-- <el-form-item label="预期成果形式" prop="resultForm">-->
|
||||
<!-- <span>{{ filterDict(cacheStore.getDict('result_form'), localFormData.resultForm) }}</span>-->
|
||||
<!-- </el-form-item>-->
|
||||
<!-- </el-col>-->
|
||||
<el-col :span="6">
|
||||
<el-form-item label="知识产权归属" prop="intellectualProperty">
|
||||
<span>{{
|
||||
|
||||
@@ -102,7 +102,7 @@ const getPreProcessTag = (impact,basicImpact) => {
|
||||
}
|
||||
if (data == 1) {
|
||||
//一般项目
|
||||
return '一般项目20万以下要总经理审批'
|
||||
return '研发费用20万元(含)以下科技创新项目报总经理审批'
|
||||
} else if (data == 2) {
|
||||
//重大项目
|
||||
return '重大项目20万元到500万元之间要总办会审批'
|
||||
|
||||
@@ -79,14 +79,14 @@
|
||||
<div v-else>--</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="resultForm" label="预期成果形式" align="center" min-width="100px">
|
||||
<template #default="scope">
|
||||
<div v-if="scope.row.resultForm !== null">
|
||||
<Tag style="margin-top: 3px" dictType="result_form" v-for="item in scope.row.resultForm" :value="item"/>
|
||||
</div>
|
||||
<div v-else>--</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column prop="resultForm" label="预期成果形式" align="center" min-width="100px">-->
|
||||
<!-- <template #default="scope">-->
|
||||
<!-- <div v-if="scope.row.resultForm !== null">-->
|
||||
<!-- <Tag style="margin-top: 3px" dictType="result_form" v-for="item in scope.row.resultForm" :value="item"/>-->
|
||||
<!-- </div>-->
|
||||
<!-- <div v-else>--</div>-->
|
||||
<!-- </template>-->
|
||||
<!-- </el-table-column>-->
|
||||
<el-table-column prop="technicalStandard" label="预期技术标准制定" align="center">
|
||||
<template #default="scope">
|
||||
<div v-if="scope.row.technicalStandard !== null">
|
||||
|
||||
@@ -249,20 +249,20 @@
|
||||
<baseTitle title="预期知识产权"></baseTitle>
|
||||
<el-row gutter="30" style="margin-bottom: -18px;"
|
||||
:style="{marginLeft:!formData.isSpecialFund?'-8.5px':'-48.5px'}">
|
||||
<el-col :span="12">
|
||||
<el-form-item label="预期成果形式" prop="resultForm"
|
||||
:style="{marginRight:!formData.isSpecialFund?'0':route.query.id?'':'40px'}">
|
||||
<el-select v-model="formData.resultForm" placeholder="请选择预期成果形式" clearable filterable multiple
|
||||
@change="changeCollectData">
|
||||
<el-option
|
||||
v-for="item in cacheStore.getDict('result_form')"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<!-- <el-col :span="12">-->
|
||||
<!-- <el-form-item label="预期成果形式" prop="resultForm"-->
|
||||
<!-- :style="{marginRight:!formData.isSpecialFund?'0':route.query.id?'':'40px'}">-->
|
||||
<!-- <el-select v-model="formData.resultForm" placeholder="请选择预期成果形式" clearable filterable multiple-->
|
||||
<!-- @change="changeCollectData">-->
|
||||
<!-- <el-option-->
|
||||
<!-- v-for="item in cacheStore.getDict('result_form')"-->
|
||||
<!-- :key="item.value"-->
|
||||
<!-- :label="item.label"-->
|
||||
<!-- :value="item.value"-->
|
||||
<!-- />-->
|
||||
<!-- </el-select>-->
|
||||
<!-- </el-form-item>-->
|
||||
<!-- </el-col>-->
|
||||
<el-col :span="6" :style="{marginLeft:!formData.isSpecialFund?'-10px':'-40px'}">
|
||||
<el-form-item label="知识产权归属" prop="intellectualProperty">
|
||||
<el-select v-model="formData.intellectualProperty" placeholder="请选择知识产权归属" clearable filterable
|
||||
@@ -434,7 +434,7 @@ const rules = reactive({
|
||||
investmentType: [{required: true, message: '请选择出资类型', trigger: ['blur', 'change']}],
|
||||
projectImpact: [{required: true, message: '请选择项目影响', trigger: ['blur', 'change']}],
|
||||
businessSegment: [{required: true, message: '请选择所属业务板块', trigger: ['blur', 'change']}],
|
||||
resultForm: [{required: true, message: '请选择预期成果形式', trigger: ['blur', 'change']}],
|
||||
// resultForm: [{required: true, message: '请选择预期成果形式', trigger: ['blur', 'change']}],
|
||||
technicalStandard: [{required: true, message: '请选择预期技术标准制定', trigger: ['blur', 'change']}],
|
||||
industryUniversityResearch: [{required: true, message: '请选择产学研联合', trigger: ['blur', 'change']}],
|
||||
governmentDeclaration: [{required: true, message: '请选择开展政府申报', trigger: ['blur', 'change']}],
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
<el-form :model="localFormData" ref="summaryForm" :rules="rules">
|
||||
<baseTitle title="预期知识产权"></baseTitle>
|
||||
<el-row gutter="20" style="margin-bottom: -18px;margin-left: 5px">
|
||||
<el-col :span="24">
|
||||
<el-form-item label="预期成果形式" prop="resultForm">
|
||||
<span>{{ filterDict(cacheStore.getDict('result_form'), localFormData.resultForm) }}</span>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<!-- <el-col :span="24">-->
|
||||
<!-- <el-form-item label="预期成果形式" prop="resultForm">-->
|
||||
<!-- <span>{{ filterDict(cacheStore.getDict('result_form'), localFormData.resultForm) }}</span>-->
|
||||
<!-- </el-form-item>-->
|
||||
<!-- </el-col>-->
|
||||
<el-col :span="24">
|
||||
<el-form-item label="知识产权归属" prop="intellectualProperty">
|
||||
<span>{{
|
||||
|
||||
Reference in New Issue
Block a user