From eef1ef0be935d4a3d8fc691b2666f41796b2d4a5 Mon Sep 17 00:00:00 2001 From: gaoshp <291585735@qq.com> Date: 星期一, 04 十一月 2024 19:57:08 +0800 Subject: [PATCH] 增加列表显示 --- src/views/mdc/configComp/Board.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/mdc/configComp/Board.vue b/src/views/mdc/configComp/Board.vue index c4f8f95..33f4e6e 100644 --- a/src/views/mdc/configComp/Board.vue +++ b/src/views/mdc/configComp/Board.vue @@ -1,7 +1,7 @@ <!-- * @Date: 2024-04-15 23:58:36 * @LastEditors: gaoshp - * @LastEditTime: 2024-10-08 19:52:12 + * @LastEditTime: 2024-10-08 20:27:04 * @FilePath: /cps-web/src/views/mdc/configComp/Board.vue --> <template> @@ -113,7 +113,7 @@ methods: { init() { this.$HTTP.get('/api/blade-system/param-biz/detail?paramKey=mdc_chosen_groups').then(re => { - this.id = re.data.id + this.id = re?.data?.id let chosen = [] let normalId = '' try { @@ -135,7 +135,7 @@ }))) }) ]).then(res => { - this.$HTTP.get('/api/blade-cps/apply-settings/list-workstation-group?groupCategory=&groupTag=&groupType=group_workstation').then(res => { + this.$HTTP.get('/api/smis/apply-settings/list-workstation-group?groupCategory=&groupTag=&groupType=group_workstation').then(res => { this.dicts.forEach(v => { v.children = res.data.filter(item => item.groupTag == v.dictKey).map(item => { return { -- Gitblit v1.9.3