From 83e0be01c92691672683d3b6dcd0ce8d3c78ae62 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Fri, 11 Mar 2022 11:37:07 +0800 Subject: [PATCH] 1 --- doc/BcShop.py | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/doc/BcShop.py b/doc/BcShop.py index b59b00be..4082465a 100644 --- a/doc/BcShop.py +++ b/doc/BcShop.py @@ -6,6 +6,23 @@ class BcShop(object): def __init__(self): 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', 'desc': '上架商品', @@ -74,21 +91,4 @@ class BcShop(object): ['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'], - ] - }, ]