Initial commit

This commit is contained in:
qianhao.xu
2023-11-14 18:09:40 +08:00
commit 19ae3ef130
411 changed files with 33483 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
import request from '@/utils/request'
import { downFile } from '@/utils/request'
export function getWorkplanList(query) {
return request({
url: '/mes/pro/workplan/list',
method: 'get',
params: query,
})
}
export function addNewworkplan(data) {
return request({
url: '/mes/pro/workplan/addworkplan',
method: 'post',
data: data,
contextType:"application/json"
})
}