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
| import request from '@/router/axios'
|
| //简易案件程序
| //查询列表
| export function getObj(query) {
| return request({
| url: `/process/easycase/page`,
| method: 'get',
| params:query
| })
| }
| //查询调查询问笔录
| export function inquiryquestion(id) {
| return request({
| url: `/process/inquiryquestion/${id}`,
| method: 'get',
| })
| }
| //查询责令(限期)改正通知书
| export function ordercorrection(id) {
| return request({
| url: `/process/ordercorrection/${id}`,
| method: 'get',
| })
| }
| //查询当场行政处罚决定书
| export function getPenalty(id) {
| return request({
| url: `/process/nowpenaltydecision/${id}`,
| method: 'get',
| })
| }
| //保存审批意见
| export function Easycase(obj) {
| return request({
| url: '/process/easycase/save',
| method: 'post',
| data: obj
| })
| }
|
|