customerProperty.js 367 B

123456789101112131415161718
  1. import request from '@/utils/request'
  2. export function listByCustomerId(params) {
  3. return request({
  4. url: '/qw/customerProperty/list',
  5. method: 'get',
  6. params: params
  7. })
  8. }
  9. // 调用ai分析标签
  10. export function analyzeAiTagByTrade(data) {
  11. return request({
  12. url: '/qw/customerProperty/analyzeAiTagByTrade',
  13. method: 'post',
  14. data: data
  15. })
  16. }