Blame view
src/api/prod.js
829 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 15 16 17 |
return request({ url: '/yp/prod/list', method: 'post', params: query }) } |
04e55fcfe auto commit the c... |
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 |
export function fetchArticle(id) { return request({ url: '/yp/prod/detail', method: 'get', params: { id } }) } 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 }) } |