Merge branch 'master_xieqiyu_20875' into 'master'

* Fix bug#20875.

See merge request easycorp/zentaopms!2564
This commit is contained in:
孙广明
2022-03-28 06:37:08 +00:00
4 changed files with 48 additions and 11 deletions
+5 -1
View File
@@ -50,7 +50,11 @@ $(function()
{
line = $.trim(line);
if (!line.length) return;
if (!$lastRow) $row = $form.find('tbody>tr:first');
if (!$lastRow)
{
$row = $form.find('tbody>tr .title-import').first().closest('tr');
if(!$row && batchForm) $row = batchForm.createRow();
}
else $row = $lastRow.next();
while ($row.length && $row.find('.title-import').val().length)
{