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
|
|
| import request from '@/router/axios'
| //行政处罚事先告知书
|
| // 保存
| export function saveObj(obj) {
| return request({
| url: `/process/advancenotice`,
| method: 'post',
| data: obj
| })
| }
|
| // 删除
| export function delObj(obj) {
| return request({
| url: `/process/advancenotice`,
| method: 'delete',
| })
| }
|
| // 查询list
| export function getList(query) {
| return request({
| url: `/process/advancenotice/page`,
| method: 'get',
| params: query
| })
| }
|
| //查询一个
| export function getObj(registerId) {
| return request({
| url: `/process/advancenotice/get/${registerId}`,
| method: 'get',
| })
| }
|
|