// +---------------------------------------------------------------------- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ] // +---------------------------------------------------------------------- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved. // +---------------------------------------------------------------------- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 // +---------------------------------------------------------------------- // | Author: CRMEB Team // +---------------------------------------------------------------------- import request from '@/libs/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', }); }