123456789101112131415161718192021222324252627 |
- import http from '@/http/api.js'
- // 审批列表
- export function getList(data) {
- return http.request({
- url: '/blade-sales-part/statisticsCorp/appCustomerAnalysis',
- method: 'GET',
- data
- })
- }
- //查询详情
- export function getDetail(data) {
- return http.request({
- url: '/blade-sales-part/statisticsCorp/appCustomerAnalysisDetail',
- method: 'GET',
- data
- })
- }
- //查询详情
- export function submit(data) {
- return http.request({
- url: '/blade-sales-part/corpsvisit/submit',
- method: 'POST',
- data
- })
- }
|