作业设计:题源同步2.0 web版

This commit is contained in:
白了个白 2024-11-08 09:54:57 +08:00
parent 6e3959328b
commit e002066da6
1 changed files with 14 additions and 1 deletions

View File

@ -251,6 +251,7 @@ import whiteboard from '@/components/whiteboard/whiteboard.vue'
import prevReadMsgDialog from '@/views/classTask/container/newTask/prevReadMsg-Dialog.vue'
import examDetailsDrawer from '@/components/exam-question/examDetailsDrawer.vue'
import { JYApiListCT, JYApiListOriginYear, JYApiListSO} from "@/utils/examQuestion/jyeoo"
import { useToolState } from '@/store/modules/tool'
import useUserStore from '@/store/modules/user'
const userStore = useUserStore().user
@ -877,7 +878,19 @@ const showExamAnalyseDrawer = (row) => {
onMounted(() => {
onMounted(async() => {
//
const name = userStore.edustage + userStore.edusubject;
const jyCT = await JYApiListCT(proxy, name);
if (jyCT.length == 0) {
ElMessage.error('获取题型失败!');
return;
}
entpCourseWorkTypeList.value = jyCT;
//
entpCourseWorkYearList.value = JYApiListOriginYear();
entpCourseWorkGroupList.value = await JYApiListSO(proxy, name);
})
watch(() => props.propsformobj.uniquekey, (newVal) => {