Compare commits

..

No commits in common. "1ea523e4d5fbd6a5ba182c4d71093dfe193fb5fd" and "ef750bf19656fb75d87ed8fe7ed76ad57c423a99" have entirely different histories.

1 changed files with 3 additions and 3 deletions

View File

@ -219,8 +219,8 @@ const init = () => {
pageSize: 50
};
post("vip/vip/list", query).then((res: any) => {
list.value = res.list;
listItem.value = res.list[0];
list.value = res;
listItem.value = res[0];
//
list.value.forEach((item: any) => {
if (!item.levelId) return
@ -264,7 +264,7 @@ const purchase = (id: any) => {
pageSize: pageSize.value,
vipId: id
}
post('charge/list', {query}).then((res: any) => {
post('retail/list', {query}).then((res: any) => {
tableData.value = res.list
})
}