1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- import {get,post} from '@/method/axios'
- //登录
- export const userloginInfo=(data)=>post("/foundation/dashboard/login/",data)
- //公司接口
- export const kcfxcompanInfo=(data)=>get('/plugins/lhyt/get_companies/',data)
- //首页chart库存分析
- export const kcfxchartInfo=(data)=>get('/plugins/lhyt/product_stock/home/',data)
- //库存分析details表格数据
- export const kcfxdataInfo=(data)=>get('/plugins/lhyt/product_stock/detail/',data)
- //首页chart客流分析
- export const klfxchartInfo=(data)=>get('/plugins/lhyt/klfx_home/',data)
- //客流分析表格数据
- export const klfxtabledataInfo=(data)=>get('/plugins/lhyt/klfx_detail/',data)
- //首页chart车辆库存
- export const clkcchartInfo=(data)=>get('/plugins/lhyt/jxc_home/',data)
- //车辆库存 进销存报表表
- export const jxctabledataInfo=(data)=>get('/plugins/lhyt/jxc_detail/jxc/',data)
- //车辆库存 分渠道销量统计分析
- export const fqdxltabledataInfo=(data)=>get('/plugins/lhyt/jxc_detail/fqd/',data)
- //首页chart分期业务
- export const fqywchartInfo=(data)=>get('/plugins/lhyt/fqyx_home/',data)
- //分期业务 表格数据
- export const fqywtabledataInfo=(data)=>get('/plugins/lhyt/fqyx_detail/',data)
- //首页chart客源分析
- export const kyfxchartInfo=(data)=>get('/plugins/lhyt/kyfx_home/',data)
- //客源分析 表格数据
- export const kyfxtabledataInfo=(data)=>get('/plugins/lhyt/kyfx_detail/',data)
- //首页chart保客分析
- export const bkfxchartInfo=(data)=>get('/plugins/lhyt/bkfx_home/',data)
- //保客分析 table数据
- export const bkfxtabledataInfo=(data)=>get('/plugins/lhyt/bkfx_detail/',data)
- //首页chart入厂台次
- export const rctcchartInfo=(data)=>get('/plugins/lhyt/shtc_home/',data)
- //入场台次 table数据
- export const rctctabledataInfo=(data)=>get('/plugins/lhyt/shtc_detail/',data)
- //入厂产值 table数据 售后收入明细
- export const rccztabledataInfo=(data)=>get('/plugins/lhyt/shjy_detail/',data)
- //首页月度数据
- export const monthlydata=(data)=>get('/plugins/lhyt/xssjml_home/',data)
- //月度数据 table数据 销售三级毛利
- export const monthlytabledataInfo=(data)=>get('/plugins/lhyt/xssjml_detail/',data)
- //首页交车排名数据
- export const jcpmchartInfo=(data)=>get('/plugins/lhyt/jcpm_home/',data)
- //销售顾问业绩排名
- export const xsgwtabledataInfo=(data)=>get('/plugins/lhyt/jcpm_detail/xsgwyjpm/',data)
- //各品牌品牌销量
- export const ppxltabledataInfo=(data)=>get('/plugins/lhyt/jcpm_detail/gppxltj/',data)
- //销售数据对比
- export const xsdbtabledataInfo=(data)=>get('/plugins/lhyt/jcpm_detail/xssjdb/',data)
- //首页产值统计
- export const cztjchartInfo=(data)=>get('/plugins/lhyt/shsr_home/',data)
- //产值统计 售后收入明细
- export const cztjtabledataInfo=(data)=>get('/plugins/lhyt/shsr_detail/',data)
- //首页保险承保核保
- export const bxcbhbchartInfo=(data)=>get('/plugins/lhyt/bxcb_home/',data)
- //保险承保核保数据
- export const bxcbhbtabledataInfo=(data)=>get('/plugins/lhyt/bxcb_detail/',data)
|