Fixiaobai
2023-10-17 29fea0e57572768b2daedc87f9459cb2ef2a5e76
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
  })
}