licp
2024-04-29 ea1a8cf41c11f8f533cea594e1f1c03640cf4a96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import request from '@/router/axios'
 
export function computeByDutyRecordId(id) {
  return request({
    url: '/mes/computation/computeByDutyRecordId/' + id,
    method: 'post'
  })
}
 
export function computeByDutyRecordIdList(ids) {
  return request({
    url: '/mes/computation/computeByDutyRecordIdList',
    method: 'post',
    data: ids
  })
}