fix : 修复需求上报成果展示,需求新增专项资金校验

This commit is contained in:
2024-06-29 22:27:22 +08:00
parent a446dfcaa6
commit 3b884c0b78
5 changed files with 26 additions and 24 deletions

View File

@@ -41,8 +41,8 @@
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="专项资金名称" prop="specialFundId">
<el-select v-model="formData.specialFundId" placeholder="请选择专项资金名称" clearable filterable :disabled="!formData.isSpecialFund">
<el-form-item label="专项资金名称" prop="specialFundId" v-if="formData.isSpecialFund">
<el-select v-model="formData.specialFundId" placeholder="请选择专项资金名称" clearable filterable >
<el-option
v-for="item in specialFundOption"
:key="item.value"
@@ -158,7 +158,7 @@ const specialFundOption = ref([])
const form = ref(null)
const fileList = ref([])
const loading = ref(false)
const showTable = ref(false)
const showTable = ref(true)
const processStore = useProcessStore()
const processInstanceData = ref()
const formPermMap = ref(new Map());