修改bug 52236 海外标准法规:当以下字段输入后,点击提交按钮,系统无反应
This commit is contained in:
@@ -1978,6 +1978,10 @@
|
|||||||
:placeholder="$t('m.lookUpByAlternativeCriteria')"
|
:placeholder="$t('m.lookUpByAlternativeCriteria')"
|
||||||
clearable :maxlength="100"></el-input>
|
clearable :maxlength="100"></el-input>
|
||||||
</el-form-item>
|
</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-form-item label="采标编号" prop="nameShow" class="add-form-item form-item-disabled">
|
||||||
<el-input v-model="advanceSearchMapping.CBBH" clearable placeholder="根据采标编号查找"></el-input>
|
<el-input v-model="advanceSearchMapping.CBBH" clearable placeholder="根据采标编号查找"></el-input>
|
||||||
@@ -2424,6 +2428,7 @@ export default {
|
|||||||
|
|
||||||
//高级搜索映射
|
//高级搜索映射
|
||||||
advanceSearchMapping: {
|
advanceSearchMapping: {
|
||||||
|
BFDTBZH: '',
|
||||||
txlbOption: '', //标准体系
|
txlbOption: '', //标准体系
|
||||||
GXHBQ: '', //标签
|
GXHBQ: '', //标签
|
||||||
CYSD: '', //我司参与深度
|
CYSD: '', //我司参与深度
|
||||||
|
|||||||
@@ -3160,7 +3160,7 @@ export default {
|
|||||||
connect: "and",
|
connect: "and",
|
||||||
field: key || '',
|
field: key || '',
|
||||||
type: 'regexp',
|
type: 'regexp',
|
||||||
value: value.join(',')
|
value: Array.isArray(value) ? value.join(',') : [value]
|
||||||
});
|
});
|
||||||
} else if (value !== null && value !== '' && (key === 'SSRQ' || key === 'XCXSSRQ' || key === 'ZCCSSRQ')) {
|
} else if (value !== null && value !== '' && (key === 'SSRQ' || key === 'XCXSSRQ' || key === 'ZCCSSRQ')) {
|
||||||
advanceSearchVOList.push({
|
advanceSearchVOList.push({
|
||||||
@@ -3949,7 +3949,7 @@ export default {
|
|||||||
connect: "and",
|
connect: "and",
|
||||||
field: key || '',
|
field: key || '',
|
||||||
type: 'regexp',
|
type: 'regexp',
|
||||||
value: value.join(',')
|
value: Array.isArray(value) ? value.join(',') : [value]
|
||||||
});
|
});
|
||||||
} else if (value !== null && value !== '' && (key === 'SSRQ' || key === 'XCXSSRQ' || key === 'ZCCSSRQ')) {
|
} else if (value !== null && value !== '' && (key === 'SSRQ' || key === 'XCXSSRQ' || key === 'ZCCSSRQ')) {
|
||||||
advanceSearchVOList.push({
|
advanceSearchVOList.push({
|
||||||
|
|||||||
Reference in New Issue
Block a user