From 1bea9f01596727870e24789c4ea48b7b887efb21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E8=99=B9=E7=9D=BF?= <297504645@qq.com> Date: Fri, 21 Apr 2023 16:09:17 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=A6=E6=83=85+utable=E8=BD=AC=E4=B9=89?= =?UTF-8?q?=E6=95=B0=E5=AD=97=E5=90=8C=E6=97=B6=E5=88=A4=E6=96=ADnumber?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E5=A4=84=E7=90=86=EF=BC=88=E8=A7=A3=E5=86=B3?= =?UTF-8?q?+=E2=80=9C=E2=80=9D=E8=BD=AC=E4=B9=89=E5=90=8E=E6=95=B0?= =?UTF-8?q?=E5=AD=970=E4=B8=8D=E6=98=BE=E7=A4=BA=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fe/PC/src/components/currenDescriptions/index.vue | 4 +++- fe/PC/src/components/umyTable/index.vue | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/fe/PC/src/components/currenDescriptions/index.vue b/fe/PC/src/components/currenDescriptions/index.vue index 5bf4242e9..65f944945 100644 --- a/fe/PC/src/components/currenDescriptions/index.vue +++ b/fe/PC/src/components/currenDescriptions/index.vue @@ -52,7 +52,9 @@ > - {{ propsData[item.prop] ? propsData[item.prop] + "" : "" }} + + {{ propsData[item.prop] && typeof(propsData[item.prop]) != 'number' ? propsData[item.prop] + "" : propsData[item.prop] }} + {{ scope.row[item.prop] ? scope.row[item.prop] + "" : "" }}{{ scope.row[item.prop] && typeof(scope.row[item.prop]) != 'number' ? scope.row[item.prop] + "" : scope.row[item.prop] }}