fei
2 天以前 b12df65ef993f6af68cae2bbfe5f42567d5c1532
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
import request from '@/utils/request'
 
// 查询【请填写功能名称】列表
export function listArchiverecordstouser(query) {
  return request({
    url: '/system/archiverecordstouser/list',
    method: 'get',
    params: query
  })
}
 
// 查询【请填写功能名称】详细
export function getArchiverecordstouser(id) {
  return request({
    url: '/system/archiverecordstouser/' + id,
    method: 'get'
  })
}
 
// 新增【请填写功能名称】
export function addArchiverecordstouser(data) {
  return request({
    url: '/system/archiverecordstouser',
    method: 'post',
    data: data
  })
}
 
// 修改【请填写功能名称】
export function updateArchiverecordstouser(data) {
  return request({
    url: '/system/archiverecordstouser',
    method: 'put',
    data: data
  })
}
 
// 删除【请填写功能名称】
export function delArchiverecordstouser(id) {
  return request({
    url: '/system/archiverecordstouser/' + id,
    method: 'delete'
  })
}
// 授权用户与案卷目录绑定选择
export function authRecordToUser(data) {
  return request({
    url: '/system/archiverecordstouser/authUserToArchive',
    method: 'put',
    params: data
  })
}
// 删除【请填写功能名称】
export function delArchiverecordstouserByReIdAndUid(data) {
  return request({
    url: '/system/archiverecordstouser/deleteByRidUid',
    method: 'delete',
    params: data
  })
}
//判断是否已经授权
export function getArchiverecordstouserByReIdAndUid(data) {
  return request({
    url: '/system/archiverecordstouser/getByRidUid',
    method: 'get',
    params: data
  })
}