diff --git a/src/components/Introduce/InformationModel.vue b/src/components/Introduce/InformationModel.vue index 94b748a..fb5fa49 100644 --- a/src/components/Introduce/InformationModel.vue +++ b/src/components/Introduce/InformationModel.vue @@ -388,6 +388,12 @@ const formTailLayout = { }; export default { name: 'SettledModel', + props: { + placeType: { + type: Number, + default: null, + }, + }, data() { this.handleSearchTasks = debounce(this.handleSearchTasks, 800); return { @@ -475,7 +481,7 @@ export default { // 模糊搜索 选择公司信息 async handleSearchTasks() { try { - const params = { param: { company: this.company } }; + const params = { param: { company: this.company, placeType: this.placeType } }; const res = await queryInfo(params); const { code, msg, data } = res.data; if (code === 200) { diff --git a/src/views/IncubationPlatform/Children/place/EntitySpace.vue b/src/views/IncubationPlatform/Children/place/EntitySpace.vue index e31a2d4..a018836 100644 --- a/src/views/IncubationPlatform/Children/place/EntitySpace.vue +++ b/src/views/IncubationPlatform/Children/place/EntitySpace.vue @@ -7,7 +7,7 @@