mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-09 10:56:46 +08:00
在线管理点击学员报错问题
This commit is contained in:
@@ -263,9 +263,9 @@ watch(formData, () => {
|
||||
});
|
||||
});
|
||||
|
||||
const sysTypeOption1 = computed(() => store.state.content_type.find(({ code }) => code == formData.value.sysType1));
|
||||
const sysTypeOption2 = computed(() => sysTypeOption1.value?.children.find(({ code }) => code == formData.value.sysType2));
|
||||
const sysTypeOption3 = computed(() => sysTypeOption2.value?.children.find(({ code }) => code == formData.value.sysType2));
|
||||
const sysTypeOption1 = computed(() => store.state.content_type?.find(({ code }) => code == formData.value.sysType1));
|
||||
const sysTypeOption2 = computed(() => sysTypeOption1.value?.children?.find(({ code }) => code == formData.value.sysType2));
|
||||
const sysTypeOption3 = computed(() => sysTypeOption2.value?.children?.find(({ code }) => code == formData.value.sysType2));
|
||||
|
||||
const { data: studentList, fetch: searchStu, total, loading } = usePage(STUDENT_LIST, searchParams, false);
|
||||
const { loading: stuAsyncLoading, start } = useAsyncStu(formData.value.id, props.type, searchStu);
|
||||
|
||||
Reference in New Issue
Block a user