import request from '@/utils/request' import constant from '@/constant' function pageList(formData) { return request.post(constant.serverUrl + "/base/workPersonScheduling/pageList", formData); } function create() { return request.get(constant.serverUrl + "/base/workPersonScheduling/create"); } function edit(id) { return request.get(constant.serverUrl + "/base/workPersonScheduling/edit/" + id); } function add(formModel) { return request.post(constant.serverUrl + "/base/workPersonScheduling/add", formModel, { headers: { "Content-Type": "application/json" } }); } function update(formModel) { return request.post(constant.serverUrl + "/base/workPersonScheduling/update", formModel, { headers: { "Content-Type": "application/json" } }); } function remove(id) { return request.post(constant.serverUrl + "/base/workPersonScheduling/delete/" + id); } function batchRemove(idList) { return request.post(constant.serverUrl + "/base/workPersonScheduling/batchDelete", idList, { headers: { "Content-Type": "application/json" } }); } function findScheduling(formData) { return request.post(constant.serverUrl + "/base/workPersonScheduling/findScheduling", formData); } function changeScheduling(formData) { return request.post(constant.serverUrl + "/base/workPersonScheduling/changeScheduling", formData); } function changePersonShift(formData) { return request.post(constant.serverUrl + "/base/workPersonScheduling/changePersonShift", formData); } function findWPSByParameter(formData) { return request.post(constant.serverUrl + "/base/workPersonScheduling/findWPSByParameter", formData); } export default { pageList, create, edit, add, update, remove, batchRemove, findScheduling, changeScheduling, changePersonShift, findWPSByParameter }