| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import https from '@/plugins/luch-request_0.0.7/request'
- export const getStatWorkCatItem = data => {
- return https.get('/stat-work-cat-item/item-list', data)
- }
- export const getStatWorkCat = data => {
- return https.get('/stat-work-cat/profile', data)
- }
- //数据统计
- export const getStatList = data => {
- return https.get('/stat/list', data)
- }
- // 经营概况
- export const getMainProfile = data => {
- return https.get('/main/profile', data)
- }
- //员工业绩
- export const getStatYj = data => {
- return https.get('/stat-yj/list', data)
- }
- //业绩
- export const getStatProfit = data => {
- return https.get('/stat/profit', data)
- }
- //花材排行
- export const getStatItemProfit = data => {
- return https.get('/stat-item/profile', data)
- }
- //收入统计
- export const getStatKdProfile = data => {
- return https.get('/stat-kd/profile', data)
- }
- //客户下单排行
- export const getStatKhCgProfile = data => {
- return https.get('/stat-kh-cg/profile', data)
- }
- //客户下单排行
- export const getStatCgGhsProfile = data => {
- return https.get('/stat-cg-ghs/profile', data)
- }
- export const getStatBookProfit = data => {
- return https.get('/stat-book/profile', data)
- }
|