prod.js
1.17 KB
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
54
55
56
57
58
59
60
61
62
63
64
import request from '@/utils/request'
import {
Notification
} from 'element-ui'
// export const getPersonInfo = data => {
// return service({
// url: '/person_pay/getpersoninfo',
// method: 'post',
// data
// })
// }
export function fetchList(query) {
// console.log('api/prod/list/ ==fetchList=== query', query);
const options = {
type: 'error',
message: query,
title: '==query value ===',
showClose: true,
duration: 4000
}
Notification(options)
return request({
url: '/yp/prod/list',
method: 'post',
params: query
})
}
// export function fetchArticle(id) {
// return request({
// url: '/yp/article/detail',
// method: 'get',
// params: {
// id
// }
// })
// }
// export function fetchPv(pv) {
// return request({
// url: '/yp/article/pv',
// method: 'get',
// params: {
// pv
// }
// })
// }
// export function createArticle(data) {
// return request({
// url: '/yp/article/create',
// method: 'post',
// data
// })
// }
// export function updateArticle(data) {
// return request({
// url: '/yp/article/update',
// method: 'post',
// data
// })
// }