...
|
...
|
@@ -37,7 +37,7 @@ export function parseAssetList(json) { |
|
|
time: moment(new Date(item.createTime * 1000)).format('YYYY.MM.DD HH:mm'),
|
|
|
normalFlag: item.normalFlag,
|
|
|
tradeStatusDesc: item.tradeStatusDesc,
|
|
|
isWaitApply: item.links.includes('applyCash')
|
|
|
isWaitApply: (item.links || []).includes('applyCash')
|
|
|
};
|
|
|
}) : [];
|
|
|
let isEnd = parsedList.length === 0 || page === pagetotal;
|
...
|
...
|
|