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
|
| import request from '@/router/axios'
|
| // 保存
| export function saveObj(obj) {
| return request({
| url: `/process/processajnotice`,
| method: 'post',
| data: obj
| })
| }
|
| // 删除
| export function delObj(obj) {
| return request({
| url: `/processAjNotice/delByIds`,
| method: 'post',
| data: obj
| })
| }
|
| // 查询list
| export function getList(query) {
| return request({
| url: `/processAjNotice/getByPage`,
| method: 'get',
| params: query
| })
| }
|
| //查询一个
| export function getObj(id) {
| return request({
| url: `/process/processajnotice/get/${id}`,
| method: 'get',
| })
| }
|
| // 查询所有
| export function findAll(query) {
| return request({
| url: `/processAjNotice/getAll`,
| method: 'get',
| params: query
| })
| }
|
| export function getOne(query) {
| return request({
| url: `/processAjNotice/getById`,
| method: 'get',
| params: query
| })
| }
|
|