에스크로 거래취소

This commit is contained in:
focp212@naver.com
2025-10-28 17:32:35 +09:00
parent 52516f2427
commit 7fa26cce00
15 changed files with 684 additions and 341 deletions

View File

@@ -51,7 +51,7 @@ export const ListWrap = () => {
onIntersect
});
const callList = (type?: string) => {
const callList = async(type?: string) => {
setOnActionIntersect(false);
let params: VatReturnListParams = {
mid: mid,
@@ -64,7 +64,7 @@ export const ListWrap = () => {
...{ sortType: sortType }
}
};
vatReturnList(params).then((rs: VatReturnListResponse) => {
if(type === 'page'){
setListItems([
@@ -95,6 +95,9 @@ export const ListWrap = () => {
&& rs.nextCursor !== pageParam.cursor
&& rs.content.length === DEFAULT_PAGE_PARAM.size
);
}).catch((e: any) => {
console.log(e)
return;
});
};