1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import request from '@/utils/request'
- /**
- * 获取统计总数
- */
- export function getMallCountList() {
- return request.get(`mall/shop/stat/total`)
- }
- /**
- * 获取今日统计总数
- */
- export function getMallTodayCountList() {
- return request.get(`mall/shop/stat/today`)
- }
- /**
- * 获取昨日统计总数
- */
- export function getMallYesterdayCountList() {
- return request.get(`mall/shop/stat/yesterday`)
- }
- /**
- * 获取统计图数据
- */
- export function getMallStat() {
- return request.get(`mall/shop/stat`)
- }
- /**
- * 获取订单统计
- */
- export function getMallOrderStat() {
- return request.get(`mall/shop/stat/order`)
- }
- /**
- * 获取商品统计
- */
- export function getMallGoodsStat() {
- return request.get(`mall/shop/stat/goods`)
- }
- /**
- * 获取店铺信息
- */
- export function getShopInfo() {
- return request.get(`mall/shop/stat/shop`)
- }
|