|
@@ -64,7 +64,7 @@ const searchOther = async () => {
|
|
|
const res = await friendStore.list(info)
|
|
|
if (res.errcode == '0') {
|
|
|
list.value = res.data
|
|
|
- activeName.value = res.data[0].id
|
|
|
+ if (res.total > 0) activeName.value = res.data[0].id
|
|
|
}
|
|
|
}
|
|
|
const getUrl = (item) => {
|