Merge pull request 'fix:学科学段联动;' (#12) from yangws_ws into main
Reviewed-on: #12
This commit is contained in:
commit
27198aabfa
|
@ -27,7 +27,7 @@
|
||||||
<template #dropdown>
|
<template #dropdown>
|
||||||
<el-dropdown-menu>
|
<el-dropdown-menu>
|
||||||
<template v-for="(item, index) in subjectList">
|
<template v-for="(item, index) in subjectList">
|
||||||
<el-dropdown-item :command="item.itemtitle">{{
|
<el-dropdown-item v-if="item.edustage == userStore.edustage" :command="item.itemtitle">{{
|
||||||
item.itemtitle }}</el-dropdown-item>
|
item.itemtitle }}</el-dropdown-item>
|
||||||
</template>
|
</template>
|
||||||
</el-dropdown-menu>
|
</el-dropdown-menu>
|
||||||
|
@ -51,18 +51,24 @@ const getSubject = () => {
|
||||||
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');
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// 选择学段
|
// 选择学段
|
||||||
const handleUserEduStage = (item) => {
|
const handleUserEduStage = (item) => {
|
||||||
userStore.edustage = item
|
userStore.edustage = item
|
||||||
|
if(item === '幼儿园'){
|
||||||
|
// 默认语文
|
||||||
|
userStore.edusubject = '语文'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
// 选择学科
|
||||||
const handleUserEduSubject = (item) => {
|
const handleUserEduSubject = (item) => {
|
||||||
userStore.edusubject = item
|
userStore.edusubject = item
|
||||||
}
|
}
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
getSubject()
|
getSubject()
|
||||||
console.log(userStore,'123')
|
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
Loading…
Reference in New Issue