From f453e9e5864499f3d2fea1891a7c83e4d7657a36 Mon Sep 17 00:00:00 2001 From: igeekfan Date: Wed, 2 Aug 2023 21:35:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=84=E7=90=86=E6=9E=9A=E4=B8=BE=E6=97=A0?= =?UTF-8?q?=E6=B3=95=E6=AD=A3=E5=B8=B8=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- knife4j-vue/src/core/Knife4jAsync.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/knife4j-vue/src/core/Knife4jAsync.js b/knife4j-vue/src/core/Knife4jAsync.js index a90490d8..68d4b347 100644 --- a/knife4j-vue/src/core/Knife4jAsync.js +++ b/knife4j-vue/src/core/Knife4jAsync.js @@ -2279,7 +2279,7 @@ SwaggerBootstrapUi.prototype.analysisDefinitionRefTableModel = function (instanc refp.type = def.type; refp.example = def.example; //description = '可用值:' + def['enum'].join(','); - description = spropObj.description + KUtils.enumAvalibleLabel(that.i18nInstance, def['enum']); + description = def.description + KUtils.enumAvalibleLabel(that.i18nInstance, def['enum']); refp.description = KUtils.replaceMultipLineStr(description); // models添加所有属性 originalTreeTableModel.params.push(refp); -- Gitee