All checks were successful
continuous-integration/drone/push Build is passing
- 解压 default_iSM72.tar.gz 到 hgcloud_home 目录 - drone新增步骤: 同步 hgcloud_home 到 /public/home/template/pc/
59 lines
1.3 KiB
JavaScript
59 lines
1.3 KiB
JavaScript
// 会员中心首页
|
|
function indexData() {
|
|
return Axios.get(`/index`);
|
|
}
|
|
|
|
//会员中心首页产品列表
|
|
function indexHost(params) {
|
|
return Axios.get(`/index/host`, {params});
|
|
}
|
|
// 获取实名认证信息
|
|
function certificationInfo() {
|
|
return Axios.get(`/certification/info`);
|
|
}
|
|
//工单列表
|
|
function ticket_list(params) {
|
|
return Axios.get(`/ticket`, {params});
|
|
}
|
|
//会员中心首页新闻列表
|
|
function newsList(params) {
|
|
return Axios.get(`/news/index`, {params});
|
|
}
|
|
// 推广者统计信息
|
|
function promoter_statistic() {
|
|
return Axios.get(`/referral/promoter/statistic`);
|
|
}
|
|
|
|
// 开启推介计划
|
|
function openRecommend() {
|
|
return Axios.post(`recommend/promoter`);
|
|
}
|
|
// 推广者基础信息
|
|
function promoterInfo() {
|
|
return Axios.get(`/recommend/promoter`);
|
|
}
|
|
|
|
// 获取微信公众号用户关联信息
|
|
function getWxInfo() {
|
|
return Axios.get(`/mp_weixin_notice/client`);
|
|
}
|
|
// 获取二维码
|
|
function getWxQrcode() {
|
|
return Axios.get(`/mp_weixin_notice/qrcode`);
|
|
}
|
|
|
|
// 授信详情
|
|
function creditDetail() {
|
|
return Axios.get(`/credit_limit`);
|
|
}
|
|
|
|
// 用户可用平台币详情
|
|
function apiCoinDetail() {
|
|
return Axios.get(`/coin/client/coupon`);
|
|
}
|
|
|
|
// 平台币充值页面详情
|
|
function apiCoinRecharge(params) {
|
|
return Axios.get(`/coin/recharge`, {params});
|
|
}
|