zhouwx
3 天以前 4fe6c5ac4bc2b7fa9c9c71bb52d9df3e8b13bd7c
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
import request from '@/utils/request'
 
 
export function getSatisfiedPage(params) {
    return request({
        url: '/internal/audit/customer/list',
        method: 'get',
        params: params
    })
}
 
 
export function addSatisfied(data) {
    return request({
        url: '/internal/audit/customer/insert',
        method: 'post',
        data: data
    })
}
 
export function editSatisfied(params) {
    return request({
        url: `/internal/audit/customer/update`,
        method: 'post',
        data: params
    })
}
 
export function delSatisfied(data) {
    return request({
        url: `/internal/audit/customer/deleted?customerId=${data}`,
        method: 'get'
    })
}