You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
811 B
33 lines
811 B
import request from '@/utils/request'
|
|
// 外采申请表
|
|
export default {
|
|
getNextNodes: function(taskid) {
|
|
return request({
|
|
url: '/base/baseoutsourcingapplication/getNextTasks/' + taskid,
|
|
method: 'post',
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
}
|
|
})
|
|
},
|
|
getNextNodesForSubmit: function(data) {
|
|
return request({
|
|
url: '/base/baseoutsourcingapplication/getNextNodesForSubmit',
|
|
method: 'post',
|
|
data: data,
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
}
|
|
})
|
|
},
|
|
getPreviousNodesForReject(formobj) {
|
|
return request({
|
|
url: '/base/baseoutsourcingapplication/getPreviousNodesForReject',
|
|
method: 'post',
|
|
data: formobj,
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|