Quellcode durchsuchen

修改流程表单打印表格数据不显示的问题

金隅分支
zhichao lei vor 4 Jahren
Ursprung
Commit
97c5b759a8
1 geänderte Dateien mit 5 neuen und 5 gelöschten Zeilen
  1. +5
    -5
      Learun.Framework.Ultimate V7/Learun.Application.Web/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js

+ 5
- 5
Learun.Framework.Ultimate V7/Learun.Application.Web/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js Datei anzeigen

@@ -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('<td class="input" >' + _text + '</td>');
$td.attr('colspan', colspan);
$tr.append('<td class="input inputname" >' + _item.name + ':</td>');


Laden…
Abbrechen
Speichern