From 97c5b759a857dcc16ddc3c863e43f08d2a77b60e Mon Sep 17 00:00:00 2001 From: zhichao lei <442149704@qq.com> Date: Mon, 7 Dec 2020 15:52:29 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=81=E7=A8=8B=E8=A1=A8?= =?UTF-8?q?=E5=8D=95=E6=89=93=E5=8D=B0=E8=A1=A8=E6=A0=BC=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E4=B8=8D=E6=98=BE=E7=A4=BA=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jquery/plugin/jqprint/jquery.jqprint-0.3.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js index f47785c7b..281f6bd19 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js @@ -200,13 +200,13 @@ } else if (_item.type == 'input') { var colspan = _item.col * 2 - 1; - var _text = _item.text; + var _text = ''; + if (_item.text) { + _text = _item.text; + } if (_item.textList) { _text = String(_item.textList); - } else { - _text = ''; - } - + } var $td = a('' + _text + ''); $td.attr('colspan', colspan); $tr.append('' + _item.name + ':');