代码更新:

1.添加任务监控api.js
This commit is contained in:
梁州 2024-09-10 08:03:32 +08:00
parent 784674adf5
commit 9bd8b9f12c

11
src/api/taskMonitor.js Normal file
View File

@ -0,0 +1,11 @@
const getPickTasksByPage = (params) => {
return request({
url: '/taskMonitor/getPickTasksByPage',
method: 'post',
data: params
})
}
export {
getPickTasksByPage
}