Newer
Older
smartcity_merchant_front / src / api / overview.js
wangxitong on 22 Feb 2024 353 bytes first commit
import request from '@/utils/request'
import qs from 'qs'

// 案卷状态统计
export function statisticByState() {
  return request({
    url: '/case/statisticByState',
    method: 'get',
    params: {
      isShopCase: '1'
    }
  })
}

export function statisticToday() {
  return request({
    url: '/case/statisticShop',
    method: 'get'
  })
}