This commit is contained in:
LiJianZhao 2025-05-08 13:19:49 +08:00
parent 293a34114f
commit b5c4408ac8
1 changed files with 9 additions and 3 deletions

View File

@ -290,7 +290,10 @@ const btn = (item: any, i: number) => {
} catch (error) {
areaData = null; //
}
areaName.value=findAreaName(areaData[areaData?.length-1])
if (areaData != null){
areaName.value=findAreaName(areaData[areaData?.length-1])
}
getChargeList(listItem.value.id)
}
//
@ -352,8 +355,11 @@ const searchVip = () => {
pageSize: 50,
keyword: input3.value,
}).then((res: any) => {
list.value = res;
listItem.value = res[0];
list.value = res.list;
totalCount.value = res.total_count
listItem.value = res.list[0];
console.log(listItem)
});
};
//