Blame view

yanshouban/src/api/account.js 1.27 KB
6ee6b0b7   杨鑫   '最新'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  import request from '@/utils/request'
  
  // 渠道管理查询
  export function quGetAll(data) {
    return request({
      url: 'cereChannelManagement/queryByPage',
      method: 'post',
      data
    })
  }
  
  export function quGetOne(data) {
    return request({
      url: 'cereChannelManagement/queryById',
      method: 'post',
      data
    })
  }
  
  export function quAdd(data) {
    return request({
      url: 'cereChannelManagement/add',
      method: 'post',
      data
    })
  }
  export function quEdit(data) {
    return request({
      url: 'cereChannelManagement/edit',
      method: 'post',
      data
    })
  }
  export function quDel(data) {
    return request({
      url: 'cereChannelManagement/deleteById',
      method: 'post',
      data
    })
  }
  
a5801e96   杨鑫   '最新'
42
43
44
45
46
47
48
49
  export function statisticalAnalysis(data) {
    return request({
      url: 'cereChannelManagement/statisticalAnalysis',
      method: 'post',
      data
    })
  }
  
a6a3878d   杨鑫   最新绿道
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
  export function channelDataAnalysis(data) {
    return request({
      url: 'cereChannelManagement/channelDataAnalysis',
      method: 'post',
      data
    })
  }
  export function getAttention(data) {
    return request({
      url: 'cereChannelManagement/getAttention',
      method: 'post',
      data
    })
  }
  export function getDeliveryEffect(data) {
    return request({
      url: 'cereChannelManagement/getDeliveryEffect',
      method: 'get',
      data
    })
  }