tian
2025-09-23 b7ce4df611c11605aef94dac1b7056be5138b792
src/api/system/records.js
@@ -1,4 +1,21 @@
import request from '@/utils/request'
//统计分析结果
export function statisticInfo()
{
  return request({
    url: '/system/records/analysisRes',
    method: 'get',
  })
}
//更新状态
export function updateStatusById(id)
{
  return request({
    url: '/system/records/updateStatusById/' + id,
    method: 'get',
  //  data: data
  })
}
// 查询档案记录列表
export function listRecords(query) {
@@ -8,7 +25,14 @@
    params: query
  })
}
//查询当前最大")=
export function getMaxId()
{
  return request({
    url: '/system/records/getMaxId',
    method: 'get'
  })
}
// 查询档案记录详细
export function getRecords(id) {
  return request({
@@ -42,3 +66,13 @@
    method: 'delete'
  })
}
export function batchSubmitRecords(ids) {
  return request({
    url: '/system/records/updateSByIds',
    method: 'post',
    data: ids
  })
}