Files
huangjingfen/pro_v3.5.1/view/admin/src/api/index.js

59 lines
1.4 KiB
JavaScript
Raw Normal View History

2026-03-07 22:29:07 +08:00
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
import request from '@/plugins/request';
/**
* @description 首页头部
*/
export function headerApi () {
return request({
url: 'home/header',
method: 'get'
});
}
/**
* @description 首页订单图表
*/
export function orderApi (params) {
return request({
url: 'home/order',
method: 'get',
params
});
}
/**
* @description 首页订单图表
*/
export function userApi () {
return request({
url: 'home/user',
method: 'get'
});
}
/**
* @description 首页商品交易额排行
*/
export function rankApi () {
return request({
url: 'home/rank',
method: 'get'
});
}
export function checkAuth () {
return request({
url: 'check_auth',
method: 'get'
});
}