Blame view
src/api/prod.js
826 Bytes
b58b17e1e auto commit the c... |
1 |
import request from '@/utils/request' |
a1b48a444 auto commit the c... |
2 |
|
b58b17e1e auto commit the c... |
3 4 5 6 7 8 9 10 11 |
// export const getPersonInfo = data => { // return service({ // url: '/person_pay/getpersoninfo', // method: 'post', // data // }) // } export function fetchList(query) { |
b58b17e1e auto commit the c... |
12 13 14 |
return request({ url: '/yp/prod/list', method: 'post', |
a86b16bba auto commit the c... |
15 |
data: query |
b58b17e1e auto commit the c... |
16 17 |
}) } |
04e55fcfe auto commit the c... |
18 |
|
a86b16bba auto commit the c... |
19 |
export function fetchProd(pid) { |
04e55fcfe auto commit the c... |
20 21 22 23 |
return request({ url: '/yp/prod/detail', method: 'get', params: { |
a86b16bba auto commit the c... |
24 |
pid |
04e55fcfe auto commit the c... |
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 |
} }) } 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 }) } |