123456789101112131415161718192021222324252627282930313233 |
- import http from '@/http/api.js'
- //修改和保存
- export function typeSave(data) {
- return http.request({
- url: '/trade-purchase/leads/save',
- method: 'post',
- data
- })
- }
- //查询个人信息
- export function getUserInfo(data) {
- return http.request({
- url: '/blade-user/info',
- method: 'GET',
- data
- })
- }
- //查询列表
- export function queryList(params) {
- return http.request({
- url: '/trade-purchase/leads/list',
- method: 'get',
- params
- })
- }
- //查询全部客户
- export function corpsDescList(params) {
- return http.request({
- url: '/blade-client/corpsdesc/corpsDescList',
- method: 'get',
- params
- })
- }
|