zhuhao_dev #416

Merged
zhuhao merged 6 commits from zhuhao_dev into main 2024-11-21 17:40:05 +08:00
1 changed files with 2 additions and 0 deletions
Showing only changes of commit 1417919f74 - Show all commits

View File

@ -45,6 +45,7 @@
import { onMounted, ref, nextTick, toRaw, reactive } from 'vue'; import { onMounted, ref, nextTick, toRaw, reactive } from 'vue';
import { cloneDeep } from 'lodash' import { cloneDeep } from 'lodash'
import { listEvaluation } from '@/api/subject' import { listEvaluation } from '@/api/subject'
import { sessionStore } from '@/utils/store'
const BaseUrl = import.meta.env.VITE_APP_BUILD_BASE_PATH const BaseUrl = import.meta.env.VITE_APP_BUILD_BASE_PATH
// emit // emit
@ -195,6 +196,7 @@
// //
const { rows } = await listEvaluation(subjectParams) const { rows } = await listEvaluation(subjectParams)
// //
subjectList.value = sessionStore.get('subject.bookList')
const res = await listEvaluation(unitParams) const res = await listEvaluation(unitParams)
unitList.value = [...res.rows] unitList.value = [...res.rows]
// //