mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-10 03:16:44 +08:00
bug
This commit is contained in:
@@ -265,7 +265,7 @@ watch(formData, () => {
|
||||
|
||||
const sysTypeOption1 = computed(() => store.state.content_type?.find(({ code }) => code == formData.value.sysType1));
|
||||
const sysTypeOption2 = computed(() => sysTypeOption1.value?.children ? sysTypeOption1.value?.children?.find(({ code }) => code == formData.value.sysType2) : {});
|
||||
const sysTypeOption3 = computed(() => sysTypeOption1.value?.children ? sysTypeOption2.value?.children?.find(({ code }) => code == formData.value.sysType2) : {});
|
||||
const sysTypeOption3 = computed(() => sysTypeOption2.value?.children ? 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