12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import request from '@/api'
- import qs from 'qs'
- // 潜在客户/竞争对手接口
- export function getCorList (data) {
- return request({
- url: '/potential/corList',
- method: 'post',
- data
- })
- }
- // 潜在客户/竞争对手接口--首页
- export function getIndexCorList (data) {
- return request({
- url: '/potential/index',
- method: 'post',
- data
- })
- }
- export function setRemoveEnt (data) {
- data = qs.stringify(data)
- return request({
- url: '/potential/rMyRivals',
- method: 'POST',
- data
- })
- }
- export function setRemoveCustomer (data) {
- // data = qs.stringify(data)
- return request({
- baseURL: '/publicapply',
- url: '/customer/exclude',
- method: 'POST',
- data
- })
- }
- export function getUsage (data) {
- data = qs.stringify(data)
- return request({
- url: '/portrait/subVipPortrait/usage',
- method: 'POST',
- data
- })
- }
- export function setLogs (data) {
- // data = qs.stringify(data)
- return request({
- url: '/drainage/buyerunit',
- baseURL: '/publicapply',
- method: 'POST',
- data
- })
- }
- export function followClientList (data) {
- data = qs.stringify(data)
- return request({
- url: '/customer/list',
- baseURL: '/publicapply',
- method: 'POST',
- data
- })
- }
- // 是否认领企业
- export function claimchecked (data) {
- return request({
- baseURL: '/entnicheNew',
- url: '/customer/claimcheck',
- method: 'POST',
- data
- })
- }
- // 添加认领
- export function custAttention (data) {
- return request({
- baseURL: '/entnicheNew',
- url: '/customer/attention',
- method: 'POST',
- data
- })
- }
|