Merge pull request 'baigl' (#17) from baigl into main

Reviewed-on: #17
This commit is contained in:
baigl 2024-11-08 09:55:56 +08:00
commit d7857d9f45
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) => {