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:
@@ -264,8 +264,8 @@ 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 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 { 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