Merge branch 'main' of ssh://git.jizhiweb.cn:2222/clinic-v2/web

This commit is contained in:
ChenQiuYu 2025-04-27 12:39:55 +08:00
commit 0fa3bf802e
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;
listItem.value = res[0];
list.value = res.list;
listItem.value = res.list[0];
//
list.value.forEach((item: any) => {
if (!item.levelId) return
@ -264,7 +264,7 @@ const purchase = (id: any) => {
pageSize: pageSize.value,
vipId: id
}
post('retail/list', {query}).then((res: any) => {
post('charge/list', {query}).then((res: any) => {
tableData.value = res.list
})
}