fix : 新增(单选框)默认否,修复需求上报业务描述换行数据显示,选择框为远程搜索解决卡顿问题

This commit is contained in:
2024-08-07 22:37:41 +08:00
parent 5cdec2b677
commit cab7311cfb
15 changed files with 59 additions and 51 deletions

View File

@@ -76,6 +76,7 @@ const searchConfig = ref([
cacheKey: 'project_type',
clearable: true,
filterable: true,
remote: true
}
},
{
@@ -87,6 +88,7 @@ const searchConfig = ref([
placeholder: '请选择项目影响',
clearable: true,
filterable: true,
remote: true
},
colProps: {}
},
@@ -99,6 +101,7 @@ const searchConfig = ref([
cacheKey: 'rd_subject',
clearable: true,
filterable: true,
remote: true
}
},
{
@@ -121,7 +124,8 @@ const searchConfig = ref([
props: {
placeholder: '请选择状态',
clearable: true,
cacheKey: 'project_filing'
cacheKey: 'project_filing',
remote: true
}
},
// {

View File

@@ -324,6 +324,7 @@ const searchConfig = reactive([
clearable: true,
filterable: true,
cacheKey: 'project_cost',
remote: true
}
},
{
@@ -336,6 +337,7 @@ const searchConfig = reactive([
filterable: true,
checkStrictly: true,
cacheKey: 'fee_stage',
remote: true
}
},
{

View File

@@ -75,6 +75,7 @@ const searchConfig = ref([
cacheKey: 'project_type',
clearable: true,
filterable: true,
remote: true
}
},
{
@@ -86,6 +87,7 @@ const searchConfig = ref([
cacheKey: 'project_impact',
clearable: true,
filterable: true,
remote: true
},
colProps: {}
},
@@ -98,6 +100,7 @@ const searchConfig = ref([
cacheKey: 'rd_subject',
clearable: true,
filterable: true,
remote: true
}
},
{
@@ -120,7 +123,8 @@ const searchConfig = ref([
props: {
placeholder: '请选择状态',
clearable: true,
cacheKey: 'project_implementation'
cacheKey: 'project_implementation',
remote: true
}
},
// {

View File

@@ -73,6 +73,7 @@ const searchConfig = ref([
cacheKey: 'project_type',
clearable: true,
filterable: true,
remote: true
}
},
{
@@ -84,6 +85,7 @@ const searchConfig = ref([
placeholder: '请选择项目影响',
clearable: true,
filterable: true,
remote: true
},
colProps: {}
},
@@ -96,6 +98,7 @@ const searchConfig = ref([
cacheKey: 'rd_subject',
clearable: true,
filterable: true,
remote: true
}
},
{
@@ -118,7 +121,8 @@ const searchConfig = ref([
props: {
placeholder: '请选择状态',
clearable: true,
cacheKey: 'project_initiation'
cacheKey: 'project_initiation',
remote: true
}
},
// {

View File

@@ -47,12 +47,12 @@
<el-row gutter="20" style="margin-bottom: -18px;margin-left: 5px;">
<el-col :span="24">
<el-form-item label="现有业务描述" prop="serviceDescription">
<span>{{ localFormData.serviceDescription }}</span>
<span style="white-space: pre-wrap">{{ localFormData.serviceDescription }}</span>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="研发项目关键内容描述" prop="contentDescription">
<span>{{ localFormData.contentDescription }}</span>
<span style="white-space: pre-wrap">{{ localFormData.contentDescription }}</span>
</el-form-item>
</el-col>
</el-row>