| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- import https from '@/plugins/luch-request_0.0.7/request'
- export const getWaste = async data => {
- return https.get('/stat/waste', data)
- }
- export const getStatMake = data => {
- return https.get('/stat-kind/stat-make', data)
- }
- export const getKindLzStatProfit = data => {
- return https.get('/stat-kind/lz-profile', data)
- }
- export const getKindStatProfit = data => {
- return https.get('/stat-kind/profile', data)
- }
- export const getStatCgItem = data => {
- return https.get('/stat-cg/profile', data)
- }
- 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)
- }
|