更新菁优网参数

This commit is contained in:
“zouyf” 2024-12-20 14:44:59 +08:00
parent 795c4d82c7
commit da8d6c4b32
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 msgUtils from "@/plugins/modal";
import * as commUtils from "@/utils/comm"; import * as commUtils from "@/utils/comm";
import * as Api_server from "@/api/apiService"; // import * as Api_server from "@/api/apiService"; //
import useClassTaskStore from '@/store/modules/classTask'
const router = useRouter() const router = useRouter()
const userStore = useUserStore().user // const userStore = useUserStore().user //
const currentNode = ref({}) const currentNode = ref({})
const refs = ref([]); const refs = ref([]);
const classTaskStore = useClassTaskStore();
const collectRef = (key) => { const collectRef = (key) => {
return (el) => { return (el) => {
@ -513,7 +516,9 @@ const changeClass = async (type, row, other) => {
} }
// //
onMounted(() => { onMounted(async () => {
//
await classTaskStore.initJYInfo(userStore);
}) })
</script> </script>