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