查询课表传入周次

This commit is contained in:
ywyonui 2025-09-30 14:41:13 +08:00
parent 0371ea9b54
commit 8403793298

View File

@ -165,6 +165,7 @@ const selectDay = (index: number) => {
jsId: "", jsId: "",
bjId: getCurXs.bjId, bjId: getCurXs.bjId,
xqId: xqId, xqId: xqId,
zc: curZc.value.djz,
rq: rqList.value[index].rq, // rq: rqList.value[index].rq, //
zj: rqList.value[index].zj, zj: rqList.value[index].zj,
txDate: null txDate: null
@ -173,6 +174,10 @@ const selectDay = (index: number) => {
const holiday = rqList.value[index].holiday || {}; const holiday = rqList.value[index].holiday || {};
if (holiday && holiday.type === 3 && holiday.txDate) { if (holiday && holiday.type === 3 && holiday.txDate) {
params.txDate = holiday.txDate; params.txDate = holiday.txDate;
const txZc = rqList.value[index].txZc;
if (txZc) {
params.zc = txZc;
}
} }
} }
drpkkbApi(params).then(res => { drpkkbApi(params).then(res => {