diff --git a/snowy-admin-web/src/components/XnPageSelect/index.vue b/snowy-admin-web/src/components/XnPageSelect/index.vue index 2907cbaa..95ba1c99 100644 --- a/snowy-admin-web/src/components/XnPageSelect/index.vue +++ b/snowy-admin-web/src/components/XnPageSelect/index.vue @@ -89,7 +89,9 @@ idList: [modelValue.value] } props.echoFunction(param).then((data) => { - options.value.push(data[0]) + if (data[0]){ + options.value.push(data[0]) + } }) } }