兴安出门证申请

This commit is contained in:
zc
2025-07-10 23:24:24 +08:00
parent feb4efad93
commit 169e54a96f
6 changed files with 480 additions and 1167 deletions

View 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'
})
}