13 lines
270 B
JavaScript
13 lines
270 B
JavaScript
import request from '@/utils/request'
|
|
|
|
// 查询批次操作日志列表
|
|
export function listEmisBatchOperLog(batchNo) {
|
|
return request({
|
|
url: '/emis/emisTmsSiteBatchLog/getTmsSiteBatchLogList',
|
|
method: 'get',
|
|
params: {
|
|
batchNo: batchNo
|
|
}
|
|
})
|
|
}
|