Compare commits

...

2 Commits

Author SHA1 Message Date
zouyf a2591c60bc Merge pull request '更新菁优网参数' (#160) from zouyf_tmp into main
Reviewed-on: #160
2024-12-20 14:45:40 +08:00
“zouyf” da8d6c4b32 更新菁优网参数 2024-12-20 14:44:59 +08:00
1 changed files with 6 additions and 1 deletions

View File

@ -98,10 +98,13 @@ import progressDialog from '@/views/teachingDesign/container/progress-dialog.vue
import msgUtils from "@/plugins/modal";
import * as commUtils from "@/utils/comm";
import * as Api_server from "@/api/apiService"; //
import useClassTaskStore from '@/store/modules/classTask'
const router = useRouter()
const userStore = useUserStore().user //
const currentNode = ref({})
const refs = ref([]);
const classTaskStore = useClassTaskStore();
const collectRef = (key) => {
return (el) => {
@ -513,7 +516,9 @@ const changeClass = async (type, row, other) => {
}
//
onMounted(() => {
onMounted(async () => {
//
await classTaskStore.initJYInfo(userStore);
})
</script>