week.js 463 B

1234567891011121314151617181920
  1. import request from '@/utils/request';
  2. // 家装客资-查询当前用户是否存在家装客资分配权限
  3. export function selectAllocationPermission(query) {
  4. return request({
  5. url: 'mobile/customerClueInfo/selectAllocationPermission',
  6. method: 'get',
  7. params: query,
  8. });
  9. }
  10. // 设置用户的拍照方式
  11. export function setPhotoMethod(query) {
  12. return request({
  13. url: '/mobile/setPhotoMethod',
  14. method: 'get',
  15. params: query,
  16. });
  17. }