1
This commit is contained in:
parent
525c079c95
commit
83e0be01c9
@ -6,6 +6,23 @@ class BcShop(object):
|
|||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.apis = [
|
self.apis = [
|
||||||
|
{
|
||||||
|
'name': 'searchProduct',
|
||||||
|
'desc': '获取出售的商品列表',
|
||||||
|
'group': 'BcShop',
|
||||||
|
'url': 'webapp/index.php?c=BcShop&a=searchProduct',
|
||||||
|
'params': [
|
||||||
|
['account', '', '钱包账号'],
|
||||||
|
['tips', '', 'tips'],
|
||||||
|
['nonce', '', 'nonce'],
|
||||||
|
['signature', '', '签名'],
|
||||||
|
['net_id', '', '网络id'],
|
||||||
|
],
|
||||||
|
'response': [
|
||||||
|
_common.RspHead(),
|
||||||
|
['token', '', 'token'],
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'name': 'productOnline',
|
'name': 'productOnline',
|
||||||
'desc': '上架商品',
|
'desc': '上架商品',
|
||||||
@ -74,21 +91,4 @@ class BcShop(object):
|
|||||||
['token', '', 'token'],
|
['token', '', 'token'],
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
'name': 'searchProduct',
|
|
||||||
'desc': '获取出售的商品列表',
|
|
||||||
'group': 'BcShop',
|
|
||||||
'url': 'webapp/index.php?c=BcShop&a=searchProduct',
|
|
||||||
'params': [
|
|
||||||
['account', '', '钱包账号'],
|
|
||||||
['tips', '', 'tips'],
|
|
||||||
['nonce', '', 'nonce'],
|
|
||||||
['signature', '', '签名'],
|
|
||||||
['net_id', '', '网络id'],
|
|
||||||
],
|
|
||||||
'response': [
|
|
||||||
_common.RspHead(),
|
|
||||||
['token', '', 'token'],
|
|
||||||
]
|
|
||||||
},
|
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user