prod.js
826 Bytes
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
42
43
44
45
46
47
48
49
50
51
52
53
import request from '@/utils/request'
// export const getPersonInfo = data => {
// return service({
// url: '/person_pay/getpersoninfo',
// method: 'post',
// data
// })
// }
export function fetchList(query) {
return request({
url: '/yp/prod/list',
method: 'post',
data: query
})
}
export function fetchProd(pid) {
return request({
url: '/yp/prod/detail',
method: 'get',
params: {
pid
}
})
}
export function fetchPv(pv) {
return request({
url: '/yp/prod/pv',
method: 'get',
params: {
pv
}
})
}
export function createArticle(data) {
return request({
url: '/yp/prod/create',
method: 'post',
data
})
}
export function updateArticle(data) {
return request({
url: '/yp/prod/update',
method: 'post',
data
})
}