1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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
- }
|