兴安出门证申请
This commit is contained in:
27
src/api/visCarryStuff/visStuffRecord.js
Normal file
27
src/api/visCarryStuff/visStuffRecord.js
Normal file
@@ -0,0 +1,27 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询出门记录列表
|
||||
export function list(query) {
|
||||
return request({
|
||||
url: '/system/exitRecord/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询访客信息详细
|
||||
export function getInfo(id) {
|
||||
return request({
|
||||
url: '/system/exitRecord/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 删除访客信息
|
||||
export function deleteRecord(id) {
|
||||
return request({
|
||||
url: '/system/exitRecord/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user