Compare commits

..

No commits in common. "94e23c3d69d511ae3df4a3b28ce518d3a90ad1bc" and "4095390f459413b54627a9ee32491ec8557e9a68" have entirely different histories.

2 changed files with 29 additions and 46 deletions

View File

@ -709,33 +709,29 @@ const acceptParams = async (params) => {
} else { } else {
// //
if (params.studentObj.worktype == '常规作业' || params.studentObj.worktype == '科学实验') { if (params.studentObj.worktype == '常规作业' || params.studentObj.worktype == '科学实验') {
if(params.studentObj.worktype == '常规作业'){ try {
try { // datacontent TODO
// datacontent TODO const res = await getClassworkdata(params.studentObj.id);
const res = await getClassworkdata(params.studentObj.id); if(res.data.datacontent != ''){
if(res.data.datacontent != ''){ const teachWorkFileList = JSON.parse(res.data.datacontent);
const teachWorkFileList = JSON.parse(res.data.datacontent); console.log(teachWorkFileList, '老师filelist-------------')
console.log(teachWorkFileList, '老师filelist-------------') teachWorkFileList &&
teachWorkFileList && teachWorkFileList.forEach((item) => {
teachWorkFileList.forEach((item) => { if (
if ( item.name.indexOf('jpg') > -1 ||
item.name.indexOf('jpg') > -1 || item.name.indexOf('jpeg') > -1 ||
item.name.indexOf('jpeg') > -1 || item.name.indexOf('png') > -1
item.name.indexOf('png') > -1 ) {
) { teachImageList.value.push(item)
teachImageList.value.push(item) } else {
} else { teachFileList.value.push(item)
teachFileList.value.push(item) }
} })
}) teacherFeedContentList.value.push(teachWorkFileList)
teacherFeedContentList.value.push(teachWorkFileList)
}
} catch (error) {
console.error('Invalid JSON:', error)
} }
}else{
// TODO 2024-12-20 } catch (error) {
console.error('Invalid JSON:', error)
} }
params.studentQuizAllList.forEach((item) => { params.studentQuizAllList.forEach((item) => {

View File

@ -61,27 +61,14 @@ const checkList = ref([])// 当前年级对应学科的课程,
// //
const getSubject = () => { const getSubject = () => {
// //
// if(!userStore.subject) return if(!userStore.subject) return
// listEvaluation({ itemkey: 'subject', pageSize: 500 }).then((res) => { listEvaluation({ itemkey: 'subject', pageSize: 500 }).then((res) => {
// const arr = userStore.subject.split(',') const arr = userStore.subject.split(',')
// subjectList.value = res.rows.filter(item => arr.includes(String(item.id))).map(items => items) subjectList.value = res.rows.filter(item => arr.includes(String(item.id))).map(items => items)
// console.log(subjectList,'subjectList');
// })
// list
const edustageList = ['小学','初中','高中'];
const subList = ['数学','物理','化学','生物','科学'];
edustageList.forEach((item) => {
subList.forEach((subItems) => {
subjectList.value.push({
edustage: item,
edusubject: subItems,
itemtitle: subItems
})
})
})
console.log(subjectList,'subjectList'); console.log(subjectList,'subjectList');
// })
handleUserEduStage(useClassTaskStore().experimentObj.edustage) //
handleUserEduStage(useClassTaskStore().experimentObj.edustage)
} }
// //
const isExpList = (edusubject) => { const isExpList = (edusubject) => {