Commit 4c01d24c54d13d2c0e56f7f3e75c32a4d27861c9
1 parent
bdd4ceae
update..
Showing
1 changed file
with
3 additions
and
2 deletions
src/main/resources/static/real_control_v2/js/line_schedule/sch_table.js
| ... | ... | @@ -352,9 +352,10 @@ var gb_schedule_table = (function () { |
| 352 | 352 | $(dds[1]).find('a').text(sch.lpName); |
| 353 | 353 | |
| 354 | 354 | //车辆自编号 |
| 355 | - $(dds[2]).replaceWith(temps['line-schedule-nbbm-temp'](sch)); | |
| 355 | + var $newDds2 = $(temps['line-schedule-nbbm-temp'](sch)); | |
| 356 | + $(dds[2]).replaceWith($newDds2); | |
| 356 | 357 | //车辆双击 |
| 357 | - gb_schedule_table_dbclick.carCellClick($(dds[2])); | |
| 358 | + gb_schedule_table_dbclick.carCellClick($newDds2); | |
| 358 | 359 | $(dds[3]).text(sch.qdzArrDatejh ? sch.qdzArrDatejh : ''); |
| 359 | 360 | $(dds[4]).text(sch.qdzArrDatesj ? sch.qdzArrDatesj : ''); |
| 360 | 361 | ... | ... |