From 2c3da8c79c7d2afeac244e0260b221659018b478 Mon Sep 17 00:00:00 2001 From: fengchenchen Date: Thu, 9 Nov 2023 22:43:43 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90fix-bug=E3=80=91=E6=A0=87=E7=AD=BE?= =?UTF-8?q?=E7=AE=A1=E7=90=86-=E6=A0=91=E5=BD=A2=E7=BB=93=E6=9E=84-?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E4=B8=8D=E8=83=BD=E4=BF=AE=E6=94=B9=E7=88=B6?= =?UTF-8?q?=E7=BA=A7=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/tags/modules/TagContentDictItemModal.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/system/tags/modules/TagContentDictItemModal.vue b/src/views/system/tags/modules/TagContentDictItemModal.vue index c9f18201..53e427d6 100644 --- a/src/views/system/tags/modules/TagContentDictItemModal.vue +++ b/src/views/system/tags/modules/TagContentDictItemModal.vue @@ -44,6 +44,7 @@ allowClear showSearch tree-node-filter-prop="title" + :disabled="model.id" > @@ -240,7 +241,8 @@ export default { } getDictTreeList(params).then(res => { if (res.success) { - this.parentDataPid = res.result || [] + // todo 不知道为啥发生了改变 + this.parentDataPid = res.result.records || [] } }) }