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
65
66
| import http from '@/http/api.js'
|
| //获取居住证申请列表
| export const getResideApplyList = (params) => {
| return http.request({
| url: '/blade-taskResidencePermitApply/taskResidencePermitApply/page',
| method: 'get',
| params: {
| ...params
| }
| })
| }
|
| //添加居住证申请
| export const saveResideApply = (data) => {
| return http.request({
| url: '/blade-taskResidencePermitApply/taskResidencePermitApply/save',
| method: 'POST',
| data: data
| })
| }
|
| //编辑居住证申请
| export const updateResideApply = (data) => {
| return http.request({
| url: '/blade-taskResidencePermitApply/taskResidencePermitApply/update',
| method: 'POST',
| data: data
| })
| }
|
|
|
|
| //获取居住证申请详情
| export const getResideApplyDetail = (params) => {
| return http.request({
| url: '/blade-taskResidencePermitApply/taskResidencePermitApply/detail',
| method: 'get',
| params: {
| ...params
| }
| })
| }
|
|
| //审核居住证申请
| export const auditResideApply = (data) => {
| return http.request({
| url: '/blade-taskResidencePermitApply/taskResidencePermitApply/auditing',
| method: 'POST',
| data: data
| })
| }
|
|
| //获取居住证申请提交记录列表
| export const getResideApplyRecord = (params) => {
| return http.request({
| url: '/blade-taskResidencePermitApply/taskResidencePermitApply/list',
| method: 'get',
| params: {
| ...params
| }
| })
| }
|
|