当默认日期为周六的时候,离店日期选择有问题,需要改一下_initselected函数
_initselected
if ($(this).next().text() != "") {
$(this).next().append('</br><p class="rz">返程
');
}
else {
// 选下一个月
let nextTr = $(this).parent().next();
if (nextTr[0] && (nextTr[0].tagName == "TR" || nextTr[0].tagName == "tr")) {
nextTr.children().eq(0).append('</br><p class="rz">返程
');
}
else {
$(".dateTable").eq(1).find("td").each(function(index, el) {
if ($(this).text() != "") {
$(this).append('</br><p class="rz">返程
');
return false;
}
});
}