feat: 会员中心 hgcloud 主题初始化 + drone 部署步骤
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
- 解压官方默认主题 default_yfMBA.tar.gz 到 clientarea/hgcloud/ - .gitignore 排除压缩包和临时解压目录 - drone 新增步骤: 同步 hgcloud 到 /clientarea/template/pc/
This commit is contained in:
19
clientarea/hgcloud/api/orderDetail.js
Normal file
19
clientarea/hgcloud/api/orderDetail.js
Normal file
@@ -0,0 +1,19 @@
|
||||
// 订单详情
|
||||
function orderDetail(id) {
|
||||
return Axios.get(`/order/${id}`);
|
||||
}
|
||||
|
||||
// 交易记录
|
||||
function transactionDetail(params) {
|
||||
return Axios.get(`/transaction`, { params });
|
||||
}
|
||||
|
||||
// 余额变更记录列表
|
||||
function creditList(params) {
|
||||
return Axios.get(`/credit`, { params });
|
||||
}
|
||||
|
||||
// 订单交易记录
|
||||
function apiTransactionRecord(params) {
|
||||
return Axios.get(`/order/${params.id}/transaction_record`, { params });
|
||||
}
|
||||
Reference in New Issue
Block a user