Merge pull request 'fix: 个人中心任选学科报错问题;' (#217) from yangws into main

Reviewed-on: #217
This commit is contained in:
yangws 2024-09-18 14:05:31 +08:00
commit d047e85d03
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ const subjectList = ref([])
// //
const getSubject = () => { const getSubject = () => {
// //
if(!userInfo.user.subject) return if(!userStore.user.subject) return
listEvaluation({ itemkey: 'subject', pageSize: 500 }).then((res) => { listEvaluation({ itemkey: 'subject', pageSize: 500 }).then((res) => {
const arr = userStore.user.subject.split(',') const arr = userStore.user.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)