修改bug 52236 海外标准法规:当以下字段输入后,点击提交按钮,系统无反应

This commit is contained in:
zhangyichen
2022-04-07 14:34:01 +08:00
parent 55f9275785
commit f4d17568f5
2 changed files with 7 additions and 2 deletions
@@ -1978,6 +1978,10 @@
:placeholder="$t('m.lookUpByAlternativeCriteria')"
clearable :maxlength="100"></el-input>
</el-form-item>
<!-- 部分代替标准号-->
<el-form-item label="部分代替标准号" class="add-form-item form-item-disabled">
<el-input v-model="advanceSearchMapping.BFDTBZH" clearable placeholder="根据部分代替标准号查找"></el-input>
</el-form-item>
<!-- 采标编号-->
<el-form-item label="采标编号" prop="nameShow" class="add-form-item form-item-disabled">
<el-input v-model="advanceSearchMapping.CBBH" clearable placeholder="根据采标编号查找"></el-input>
@@ -2424,6 +2428,7 @@ export default {
//高级搜索映射
advanceSearchMapping: {
BFDTBZH: '',
txlbOption: '', //标准体系
GXHBQ: '', //标签
CYSD: '', //我司参与深度
@@ -3160,7 +3160,7 @@ export default {
connect: "and",
field: key || '',
type: 'regexp',
value: value.join(',')
value: Array.isArray(value) ? value.join(',') : [value]
});
} else if (value !== null && value !== '' && (key === 'SSRQ' || key === 'XCXSSRQ' || key === 'ZCCSSRQ')) {
advanceSearchVOList.push({
@@ -3949,7 +3949,7 @@ export default {
connect: "and",
field: key || '',
type: 'regexp',
value: value.join(',')
value: Array.isArray(value) ? value.join(',') : [value]
});
} else if (value !== null && value !== '' && (key === 'SSRQ' || key === 'XCXSSRQ' || key === 'ZCCSSRQ')) {
advanceSearchVOList.push({