Files
klp-mono/apps/hand-factory/api/business/stoppage.js

12 lines
200 B
JavaScript
Raw Normal View History

2026-01-15 20:18:37 +08:00
import zinc1Request from '@/utils/zinc1Request'
2026-01-15 18:37:39 +08:00
// 停机记录列表
export function listStoppage(data) {
2026-01-15 20:18:37 +08:00
return zinc1Request({
2026-01-15 18:37:39 +08:00
url: '/api/stoppage/list',
method: 'post',
2026-01-15 20:18:37 +08:00
data
2026-01-15 18:37:39 +08:00
})
}