- Tigshop标准版
- 后台adminapi
- authority --- 权限组
- merchant ----商户
- common --- 公共方法组
- content --- 文章组
- decorate --- 装修组
- promotion --- 营销组
- setting --- 配置组
- salesman --- 分销
- user --- 会员模块
- finance --- 财务组
- account_panel --- 账户资金面板
- order_invoice --- 发票申请
- refund_log --- 退款记录
- pay_log --- 交易日志
- refund_apply --- 退款申请
- user_balance_log --- 余额日志
- user_invoice --- 增票资质申请
- user_recharge_order --- 充值申请管理
- user_withdraw_apply --- 提现申请
- product --- 商品
- product_attributes --- 商品属性管理(待定)
- product_attributes_tpl --- 商品属性模板管理
- product_inventory_log --- 商品库存日志管理
- product_batch --- 商品批量处理管理
- product_services --- 商品服务
- e_card_group --- 电子卡券组
- e_card --- 电子卡券
- product_group ---商品分组
- shop_product_category ---店铺商品分类 (待定)
- price_inquiry --- 询价管理
- brand --- 品牌管理
- category --- 商品分类管理
- comment --- 商品评论管理
- product --- 商品管理
- panel --- 统计面板组
- lang --- 多语言
- login --- 登录组
- order---订单组
- msg --- 消息管理组
- 前台api
- search --- 搜索
- merchant --- 商户
- article --- 文章
- salesman --- 分销
- product --- 商品
- order --- 订单
- category --- 商品分类
- home --- 首页
- cart --- 购物车
- user --- 会员中心
- common --- 公共方法
- shop --- 店铺
- IM
- 安装
增票资质申请列表
开发中
GET
/adminapi/finance/user_invoice/list
请求参数
Query 参数
keyword
string
会员名称/公司名称
示例值:
123123
page
string
分页页码
size
string
页数
status
string
可选
示例值:
1
sort_field
string
排序字段
sort_order
string
排序方式
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/adminapi/finance/user_invoice/list?page=&size=&sort_field=&sort_order='
返回响应
🟢200成功
application/json
Body
object {0}
示例
{
"code": 0,
"msg": "ok",
"data": {
"filter_result": [
{
"status_name": "审核通过",
"title_type_name": "企业",
"invoice_id": 18,
"user_id": 1,
"status": 1,
"apply_reply": "",
"add_time": "2024-05-16 17:34:20",
"title_type": 2,
"company_name": "时时刻刻有限公司",
"company_code": "6545321321545646",
"company_address": "中原大地",
"company_phone": "13121345646",
"company_bank": "13213465442",
"company_account": "54655212112",
"mobiel": "",
"email": "",
"invoice_content": "商品明细",
"username": "123123"
}
],
"filter": {
"keyword": "",
"page": 1,
"size": 15,
"status": -1,
"sort_field": "invoice_id",
"sort_order": "desc"
},
"total": 2,
"errcode": 0,
"message": ""
}
}
🟠404失败