峰峰执法平台简易案件程序板块 pad端
yang
2022-10-17 4107256a8d1fa9a2db0969122bfc760994b12421
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//先行登记保存证据物品处理通知书
//查询接口
import request from "@/router/axios";
 
//行政处罚决定书
export function getObj(id) {
  return request({
    url: `/process/penaltydecision/get/${id}`,
    method: 'get'
  })
}
 
//保存接口
export function saveObj(obj) {
  return request({
    url: '/process/penaltydecision',
    method: 'post',
    data: obj
  })
}