mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-uniapp.git
synced 2026-06-21 09:20:14 +08:00
feat: 新增提现记录功能及相关调整
- 新增提现记录页面并在pages.json中注册路由 - 在存款操作页添加提现记录入口 - 新增两个提现相关的API接口 - 修复发票详情页CSS深度选择器兼容性问题 - 修复操作页面末尾缺失的换行符
This commit is contained in:
@@ -23,6 +23,23 @@ export function withdrawalApply(params) {
|
||||
});
|
||||
}
|
||||
|
||||
export function getWithdrawApplyPage(params) {
|
||||
return http.request({
|
||||
url: "/member/withdrawApply",
|
||||
method: Method.GET,
|
||||
needToken: true,
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
export function getWithdrawApplyWechatTransferInfo(id) {
|
||||
return http.request({
|
||||
url: `/member/withdrawApply/wechat/transfer/${id}`,
|
||||
method: Method.GET,
|
||||
needToken: true,
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付结果查询
|
||||
* @param orderType 交易类型,可用值:TRADE,ORDER,RECHARGE
|
||||
|
||||
Reference in New Issue
Block a user