1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| import request from '@/router/axios'
| //责令(限期)改正复查意见书
| // 保存
| export function saveObj(obj) {
| return request({
| url: `/process/certificateofservice`,
| method: 'post',
| data: obj
| })
| }
|
| //查询一个
| export function getObj(query) {
| return request({
| url: `/process/certificateofservice/getByParam`,
| method: 'get',
| params:query,
| })
| }
|
|