12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import http from '@/http/api.js'
- // 省市区
- export function urbanAreas(data) {
- return http.request({
- url: '/blade-system/region/lazy-list',
- method: 'GET',
- data
- })
- }
- // 查询业务员
- export function gainUser(data) {
- return http.request({
- url: '/blade-user/client/gainUser',
- method: 'GET',
- data
- })
- }
- // 查询基础资料分类
- export function customerType(data) {
- return http.request({
- url: '/blade-client/corpstype/tree',
- method: 'GET',
- data
- })
- }
- // 查询所有基础资料分类
- export function customerTypeAllList(data) {
- return http.request({
- url: '/blade-client/corpstype/AllList',
- method: 'GET',
- data
- })
- }
- // 保存修改
- export function saveChanges(data) {
- return http.request({
- url: '/blade-client/corpsdesc/submit',
- method: 'POST',
- data
- })
- }
- // 删除地址
- export function removeAddr(data) {
- return http.request({
- url: '/blade-client/corpsAddr/remove',
- method: 'POST',
- params:data
- })
- }
- // 删除附件
- export function removeFile(data) {
- return http.request({
- url: '/blade-client/corpsfiles/remove',
- method: 'POST',
- params:data
- })
- }
- // 查询明细
- export function queryDetail(data) {
- return http.request({
- url: '/blade-client/corpsdesc/detail',
- method: 'GET',
- data
- })
- }
- // 查询列表
- export function queryList(data) {
- return http.request({
- url: '/blade-client/corpsdesc/list',
- method: 'GET',
- data
- })
- }
|