index.js 352 B

12345678910111213141516
  1. import https from '@/plugins/luch-request_0.0.7/request'
  2. /** *
  3. * 数据统计
  4. */
  5. export const getStatList = data => {
  6. return https.get('/stat/list', data)
  7. }
  8. // 经营概况
  9. export const getMainProfile = data => {
  10. return https.get('/main/profile', data)
  11. }
  12. //员工业绩
  13. export const getStatYj = data => {
  14. return https.get('/stat-yj/list', data)
  15. }