From 5a85bf8ab6605fd7ba3f61d22631f75b624d048c Mon Sep 17 00:00:00 2001 From: lucky Date: Fri, 25 Jun 2021 10:12:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=B5=E5=8C=96=E5=B9=B3=E5=8F=B0=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E6=8E=A5=E5=8F=A3=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Introduce/InformationModel.vue | 8 +- .../Children/place/EntitySpace.vue | 3 +- .../Children/place/VirtualSpace.vue | 3 +- .../components/AddProject.vue | 78 +++++++++++++++++-- 4 files changed, 84 insertions(+), 8 deletions(-) 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 @@
- + @@ -44,6 +60,7 @@ :wrapper-col="formItemLayout.wrapperCol" class="mb-3" label="产品图片" + required >
+