| 1234567891011121314151617181920 |
- import request from '@/utils/request';
- // 家装客资-查询当前用户是否存在家装客资分配权限
- export function selectAllocationPermission(query) {
- return request({
- url: 'mobile/customerClueInfo/selectAllocationPermission',
- method: 'get',
- params: query,
- });
- }
- // 设置用户的拍照方式
- export function setPhotoMethod(query) {
- return request({
- url: '/mobile/setPhotoMethod',
- method: 'get',
- params: query,
- });
- }
|