From b93d41671ed30f13a311329a7196a4e50b932ba9 Mon Sep 17 00:00:00 2001 From: wangxiang <1827945911@qq.com> Date: Wed, 7 Sep 2022 01:12:07 +0800 Subject: [PATCH] =?UTF-8?q?:sparkles:=20=E5=BD=93=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E5=8F=91=E7=94=9F=E5=8F=98=E5=8C=96=E6=97=B6?= =?UTF-8?q?=E5=80=99=E9=87=8D=E7=BD=AE=E4=B8=8A=E7=BA=A7=E5=8C=BB=E9=99=A2?= =?UTF-8?q?=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/AMap/src/AMapDesigner/index.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/components/AMap/src/AMapDesigner/index.vue b/src/components/AMap/src/AMapDesigner/index.vue index d49b93b..29d2064 100644 --- a/src/components/AMap/src/AMapDesigner/index.vue +++ b/src/components/AMap/src/AMapDesigner/index.vue @@ -520,7 +520,7 @@ hospitalId: sendOrderIdValue, taskType: sendOrderTaskTypeValue, orgId: '', - orgName: ~~sendOrderTaskTypeValue ? '' : '等待收样员设置!', + orgName: ~~sendOrderTaskTypeValue ? '等待收样员设置!' : '', sort: 1, fileId: [], key: buildUUID() @@ -531,9 +531,11 @@ .find(item => item.sort == 1); mapTask && Object.assign(mapTask, { hospitalId: sendOrderIdValue, - taskType: sendOrderTaskTypeValue, + taskType: sendOrderTaskTypeValue + }, ~~sendOrderTaskTypeValue != ~~sendOrderTaskTypeOldValue && { orgId: '', - orgName: ~~sendOrderTaskTypeValue ? '' : '等待收样员设置!', + orgName: ~~sendOrderTaskTypeValue ? '等待收样员设置!' : '', + fileId: [] }); } handleMapPointGenerate();