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
67
68
69
70
71
72
73
74
75
76
77
78
79
| import request from '@/utils/request'
|
| // 补偿标准信息
| export function geTabletList(data) {
| return request({
| url: '/placement-apply/page',
| method: 'post',
| data
| })
| }
| //安置新增审批批次
| export function importBatch(data) {
| console.log('data',data)
|
| return request({
| url: '/placement-apply/imports',
| method: 'post',
| data
| })
| }
|
| //安置详情列表
| export function geDetailTabletList(data) {
| return request({
| url: '/placement-apply/detail',
| method: 'post',
| data
| })
| }
|
| //安置新增审批批次详情
| export function addDetail(data) {
| return request({
| url: '/placement-apply/record-add',
| method: 'post',
| data
| })
| }
|
| //安置审批批次详情
| export function getDetail(data) {
| return request({
| url: '/placement-apply/record-detail',
| method: 'post',
| data
| })
| }
| //安置审批批次详情删除
| export function delDetail(data) {
| return request({
| url: '/placement-apply/record-del',
| method: 'post',
| data
| })
| }
| //安置审批批次详情编辑
| export function editDetail(data) {
| return request({
| url: '/placement-apply/record-edit',
| method: 'post',
| data
| })
| }
| //安置审批批次详情审批
| export function approve(data) {
| return request({
| url: '/placement-apply/approve',
| method: 'post',
| data
| })
| }
| //获取数据字典
| export function getDictList(data) {
| return request({
| url: '/system/dict/data/type/street',
| method: 'get',
| // data
| })
| }
|
|