From 99c972cfa8f37811b948cca444cbab5429f7a81e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=A5=E5=AF=92=E8=8B=A5=E5=86=B0?= <5433708@qq.com> Date: Mon, 28 Nov 2022 23:07:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86=E4=BD=8D=E5=8F=B7=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E5=92=8C=E6=95=B0=E6=8D=AE=E9=A1=B5=E9=9D=A2=E7=9A=84=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E4=B8=AD=E7=9A=84=E6=9F=90=E4=B8=AA=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E7=A7=BB=E9=99=A4,=E4=BF=9D=E6=8C=81=E5=92=8C=E7=8E=B0?= =?UTF-8?q?=E5=9C=A8=E7=9A=84=E6=9C=8D=E5=8A=A1=E7=AB=AF=E5=8C=B9=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/point/PointInfo.vue | 3 ++- src/views/point/PointValue.vue | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/point/PointInfo.vue b/src/views/point/PointInfo.vue index 5a6b659..875f42d 100644 --- a/src/views/point/PointInfo.vue +++ b/src/views/point/PointInfo.vue @@ -170,7 +170,8 @@ }); }, point() { - dictionaryApi.pointDictionary('profile').then(res => { + //TODO 这里的参数删除了一个值为profile的字符串,这个值应该是一个profile的具体的id值,服务端端口移除了这个路径参数,此处暂时先写'' + dictionaryApi.pointDictionary('').then(res => { this.findObject(this.listOption.column,'pointId').dicData = res.data.records; }).catch(() => { }); diff --git a/src/views/point/PointValue.vue b/src/views/point/PointValue.vue index 6fa13a1..5bd3923 100644 --- a/src/views/point/PointValue.vue +++ b/src/views/point/PointValue.vue @@ -157,7 +157,8 @@ }); }, point() { - dictionaryApi.pointDictionary('profile').then(res => { + //TODO 这里的参数删除了一个值为profile的字符串,这个值应该是一个profile的具体的id值,服务端端口移除了这个路径参数,此处暂时先写'' + dictionaryApi.pointDictionary('').then(res => { this.findObject(this.listOption.column, 'pointId').dicData = res.data.records; }).catch(() => { });