微信小程序+后台
  1. 订单模块
微信小程序+后台
  • 改版服务器信息
  • 公共模块
    • 上传图片
      POST
    • 小程序公共配置
      GET
  • 任务模块
    • 查询任务列表
      GET
    • 生成任务数据
      GET
    • 任务配置项
      GET
    • 上传订单凭证
      POST
  • 用户模块
    • 查询用户信息
      GET
    • 获取用户邀请二维码
      GET
    • 更新用户信息
      POST
    • 登录/注册/邀请
      GET
    • 重置登录状态
      GET
  • 橱窗模块
    • 绑定橱窗
      POST
    • 查询用户橱窗
      GET
  • 订单模块
    • 订单列表
      GET
    • 查看订单
      GET
  • SQL变更
    • 20250623
    • 20250711
  1. 订单模块

订单列表

待确定
localhost
http://ming-owl.com/api
localhost
http://ming-owl.com/api
GET
http://ming-owl.com/api
/order/v1/list/
💡
waring:后台使用,前端暂未用到

请求参数

Query 参数

Header 参数

返回响应

🟢200成功
application/json
Body

🟠404失败
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://ming-owl.com/api/order/v1/list/?openid=aaaaaa&query_type=miniapp' \
--header 'X-Requested-With;' \
--header 'Authorization: Bearer {{token}}'
响应示例响应示例
200 - 成功示例
{
    "status": "success",
    "code": 200,
    "message": "",
    "data": [
        {
            "order_no": "7b4257c3-2a62-4e33-a1a2-5f87deda0aad",
            "influencer_openid": "aaa",
            "buyer_openid": "aaaaaa",
            "showcase_code": "123",
            "shop_name": "shoo name",
            "product_name": "product_name",
            "product_link": "product_link",
            "payment_amount": 1000,
            "quantity": 122,
            "unit_price": 100,
            "commission": 22.44,
            "payment_method": "wechat",
            "payment_no": "no000001",
            "order_status": "pending",
            "paid_at": null,
            "delivered_at": null,
            "cancelled_at": null,
            "created_at": "2025-05-27 04:31:31",
            "updated_at": "2025-05-27 04:46:06",
            "deleted_at": null
        }
    ],
    "error": {}
}
上一页
查询用户橱窗
下一页
查看订单
Built with