diff --git a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue
index ed735f70c..1e15fb23d 100644
--- a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue
+++ b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue
@@ -1978,6 +1978,10 @@
:placeholder="$t('m.lookUpByAlternativeCriteria')"
clearable :maxlength="100">
+
+
+
+
@@ -2424,6 +2428,7 @@ export default {
//高级搜索映射
advanceSearchMapping: {
+ BFDTBZH: '',
txlbOption: '', //标准体系
GXHBQ: '', //标签
CYSD: '', //我司参与深度
diff --git a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue
index 5a82cc79c..62fa258af 100644
--- a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue
+++ b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue
@@ -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({