This commit is contained in:
aozhiwei 2022-03-11 11:39:41 +08:00
parent 83e0be01c9
commit 27b66e0064

View File

@ -12,15 +12,14 @@ class BcShop(object):
'group': 'BcShop',
'url': 'webapp/index.php?c=BcShop&a=searchProduct',
'params': [
['account', '', '钱包账号'],
['tips', '', 'tips'],
['nonce', '', 'nonce'],
['signature', '', '签名'],
['net_id', '', '网络id'],
['account', 0, '钱包账号'],
['page', 0, '获取第几页数据'],
['sort', '', '排序字段'],
],
'response': [
_common.RspHead(),
['token', '', 'token'],
['!rows', [_common.PreSaleBox()], '商品信息'],
['page', _common.Page(), '分页信息'],
]
},
{
@ -30,14 +29,9 @@ class BcShop(object):
'url': 'webapp/index.php?c=BcShop&a=productOnline',
'params': [
['account', '', '钱包账号'],
['tips', '', 'tips'],
['nonce', '', 'nonce'],
['signature', '', '签名'],
['net_id', '', '网络id'],
],
'response': [
_common.RspHead(),
['token', '', 'token'],
]
},
{
@ -47,14 +41,9 @@ class BcShop(object):
'url': 'webapp/index.php?c=BcShop&a=productOffline',
'params': [
['account', '', '钱包账号'],
['tips', '', 'tips'],
['nonce', '', 'nonce'],
['signature', '', '签名'],
['net_id', '', '网络id'],
],
'response': [
_common.RspHead(),
['token', '', 'token'],
]
},
{
@ -64,14 +53,9 @@ class BcShop(object):
'url': 'webapp/index.php?c=BcShop&a=productBuy',
'params': [
['account', '', '钱包账号'],
['tips', '', 'tips'],
['nonce', '', 'nonce'],
['signature', '', '签名'],
['net_id', '', '网络id'],
],
'response': [
_common.RspHead(),
['token', '', 'token'],
]
},
{
@ -81,14 +65,9 @@ class BcShop(object):
'url': 'webapp/index.php?c=BcShop&a=productOffline',
'params': [
['account', '', '钱包账号'],
['tips', '', 'tips'],
['nonce', '', 'nonce'],
['signature', '', '签名'],
['net_id', '', '网络id'],
],
'response': [
_common.RspHead(),
['token', '', 'token'],
]
},
]