请求方式:GET
请求地址:currency/admin-currency-bank-cards?q=1&page=1
请求参数:
q 会员ID
page 页码
返回值:
{
"current_page": 1,
"data": [
{
"id": 1, // 卡号ID
"text": '张三' // 开户名
},
...
],
"first_page_url": "http://*.*.*/currency/admin-currency-bank-cards?page=1",
"from": null,
"last_page": 1,
"last_page_url": "http://*.*.*/currency/admin-currency-bank-cards?page=1",
"next_page_url": null,
"path": "http://*.*.*/currency/admin-currency-bank-cards",
"per_page": 15,
"prev_page_url": null,
"to": null,
"total": 0
}
请求方式:GET
请求地址:/currency/bank-cards
返回值:
{
"current_page": 1,
"data": [
{
"id": 1, // 卡号ID
"user_id": 666, // 所属会员ID
"name": '张三', // 开户名
"bank": '中国银行', // 开户行
"mobile": '188000011*1', // 预留手机号
"account": '65724324324324322346', // 账号
"created_at": '1秒前' // 添加时间
},
...
],
"first_page_url": "http://*.*.*/currency/bank-cards?page=1",
"from": null,
"last_page": 1,
"last_page_url": "http://*.*.*/currency/bank-cards?page=1",
"next_page_url": null,
"path": "http://*.*.*/currency/bank-cards",
"per_page": 15,
"prev_page_url": null,
"to": null,
"total": 0
}
请求方式:POST
请求地址:/currency/bank-cards
返回值:
{
"id": 1, // 卡号ID
"user_id": 666, // 所属会员ID
"name": '张三', // 开户名
"bank": '中国银行', // 开户行
"mobile": '188000011*1', // 预留手机号
"account": '65724324324324322346', // 账号
"created_at": '1秒前' // 添加时间
}
请求方式:GET
请求地址:/currency/bank-cards/{id}
返回值:
{
"id": 1, // 卡号ID
"user_id": 666, // 所属会员ID
"name": '张三', // 开户名
"bank": '中国银行', // 开户行
"mobile": '188000011*1', // 预留手机号
"account": '65724324324324322346', // 账号
"created_at": '1秒前' // 添加时间
}
请求方式:PUT|PATCH
请求地址:/currency/bank-cards/{id}
请求参数:
{
"name": '张三', // 开户名
"bank": '中国银行', // 开户行
"mobile": '188000011*1', // 预留手机号
"account": '65724324324324322346', // 账号
}
返回值:
{
"status": "success",
"message": "更新成功",
"result":
{
"id": 1, // 卡号ID
}
}
请求方式:DELETE
请求地址:/currency/bank-cards/{id}
返回值:
{
"status": "success",
"message": "删除成功",
"result":
{
"id": 1, // 卡号ID
}
}