diff --git a/src/uni_modules/wot-design-uni/components/wd-select-picker/wd-select-picker.vue b/src/uni_modules/wot-design-uni/components/wd-select-picker/wd-select-picker.vue index f8d91b42..6daaea4d 100644 --- a/src/uni_modules/wot-design-uni/components/wd-select-picker/wd-select-picker.vue +++ b/src/uni_modules/wot-design-uni/components/wd-select-picker/wd-select-picker.vue @@ -253,7 +253,7 @@ const { proxy } = getCurrentInstance() as any function setScrollIntoView() { let wraperSelector: string = '' let selectorPromise: Promise[] = [] - if (isDef(selectList.value) && !isArray(selectList.value)) { + if (isDef(selectList.value) && selectList.value !== '' && !isArray(selectList.value)) { wraperSelector = '#wd-radio-group' selectorPromise = [getRect(`#radio${selectList.value}`, false, proxy)] } else if (isArray(selectList.value) && selectList.value.length > 0) {