| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import request from '@/utils/request'
- // 不想写
- export function infolist(query) {
- return request({
- url: 'mobile/customerClueInfo/infolist',
- method: 'get',
- params: query
- })
- }
- export function getCustomerClueInfoById(query) {
- return request({
- url: 'mobile/customerClueInfo/getCustomerClueInfoById',
- method: 'get',
- params: query
- })
- }
- export function insertCustomerClueAnswer(data) {
- return request({
- url: 'mobile/customerClueInfo/insertCustomerClueAnswer',
- method: 'post',
- data
- })
- }
- export function addPhotoK(data) {
- return request({
- url: 'mobile/customerClueInfo/addPhoto',
- method: 'post',
- data
- })
- }
- export function getCustomerClueAnswerById(query) {
- return request({
- url: 'mobile/customerClueInfo/getCustomerClueAnswerById',
- method: 'get',
- params: query
- })
- }
- export function getDeptInfo(query) {
- return request({
- url: 'mobile/customerClueInfo/getDeptInfo',
- method: 'get',
- params: query
- })
- }
- export function updateCustomerClueDept(query) {
- return request({
- url: 'mobile/customerClueInfo/updateCustomerClueDept',
- method: 'get',
- params: query
- })
- }
|