add web market doc listSellNfts

This commit is contained in:
songliang 2022-12-02 16:11:47 +08:00
parent 082accacde
commit 89c2d705bb

View File

@ -287,4 +287,28 @@ class Market(object):
_common.NftView(),
]
},
{
'name': 'listSellNfts',
'desc': '获取上架出售的NFTs',
'group': 'Market',
'url': 'webapp/index.php?c=Market&a=listSellNfts',
'params': [
['start', 0, '分页开始偏移'],
['page_size', 0, '分页大小'],
['order_method', 0, '排序方式 0:默认排序(当前指向1) 1:上架时间 2:价格 3:星级质量 4:等级 5:能量值 6:生命值 7:攻击力 8:防御力'],
['type', 0, '物品类型 1:英雄 2:武器 3:芯片'],
['order_asc', 0, '排序方向, 0:从小到大 1:从大到小'],
['!job_filters', '', '职业过滤'],
['!search_filters' '', '搜索过滤'],
['lv_filter', 0, '等级过滤'],
['!price_filter', 0, '价格过滤']
],
'response': [
_common.RspHead(),
['total', 0, '出售的列表总数量(当前过滤配置)'],
['start', 0, '有效的分页偏移'],
['page_size', 0, '有效的分页大小'],
['!nfts', [_common.NftDetail()], 'nft列表'],
]
},
]