12345678910111213141516171819202122232425262728293031323334 |
- import http from '@/http/api.js'
- //查询列表
- export function queryList(params) {
- return http.request({
- url: '/blade-purchase-sales/appParts/selectPageByCorp',
- method: 'get',
- params
- })
- }
- //查询全部客户
- export function corpsDescList(params) {
- return http.request({
- url: '/blade-client/corpsdesc/corpsDescList',
- method: 'get',
- params
- })
- }
- // 查询业务员
- export function gainUser(data) {
- return http.request({
- url: '/blade-user/client/gainUser',
- method: 'GET',
- data
- })
- }
- //查询待收款
- export function profitStatistics(params) {
- return http.request({
- url: '/blade-purchase-sales/appParts/profitStatistics',
- method: 'get',
- params
- })
- }
|