dev
This commit is contained in:
parent
293a34114f
commit
b5c4408ac8
|
|
@ -290,7 +290,10 @@ const btn = (item: any, i: number) => {
|
|||
} catch (error) {
|
||||
areaData = null; // 或默认值
|
||||
}
|
||||
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)
|
||||
});
|
||||
};
|
||||
// 分页
|
||||
|
|
|
|||
Loading…
Reference in New Issue