Commit c66c8c90638db763877700fe912d6c1b490566d3
1 parent
ce60fe55
update <3
Showing
1 changed file
with
6 additions
and
3 deletions
src/main/resources/static/pages/forms/statement/waybill.html
| ... | ... | @@ -303,9 +303,12 @@ |
| 303 | 303 | $("#info tbody tr").each(function(index){ |
| 304 | 304 | param[index] = new Array(); |
| 305 | 305 | $(this).children().each(function(i){ |
| 306 | - param[index][i] = $(this).text().split("\\")[0]; | |
| 307 | - if(i==0){ | |
| 308 | - param[index][3] = $(this).text().split("\\")[1]; | |
| 306 | + if(i<3){ | |
| 307 | + param[index][i] = $(this).text().split("\\")[0]; | |
| 308 | + if(i==0){ | |
| 309 | + param[index][3] = $(this).text().split("\\")[1]; | |
| 310 | + | |
| 311 | + } | |
| 309 | 312 | } |
| 310 | 313 | }); |
| 311 | 314 | }); | ... | ... |