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