Compare commits

..

No commits in common. "5cfd5747a1ac07740d3247414558e021436477fa" and "04263cd519da1d4b668068558c83a983f68c87f4" have entirely different histories.

1 changed files with 2 additions and 3 deletions

View File

@ -115,8 +115,7 @@ const getSubjectContent = async () => {
edustage,
// entpcourseedituserid: userId,
itemgroup: 'textbook',
orderby: 'orderidx asc',
pageSize: 10000
pageSize: 500
}
let data;
const { rows } = await listEvaluation(params)
@ -143,7 +142,7 @@ const getSubject = async () => {
subjectList.value = JSON.parse(localStorage.getItem('subjectList'))
}
else {
const { rows } = await listEvaluation({ itemkey: "version", edusubject, edustage, pageSize: 10000, orderby: 'orderidx asc', })
const { rows } = await listEvaluation({ itemkey: "version", edusubject, edustage, pageSize: 500 })
subjectList.value = rows
localStorage.setItem('subjectList', JSON.stringify(subjectList.value))
}