请假功能内容修改

This commit is contained in:
2025-12-03 09:59:20 +08:00
parent 3eaadca4b6
commit d05cfe8c30
9 changed files with 2065 additions and 1745 deletions

View File

@@ -18,6 +18,23 @@ export function addStudent(data) {
})
}
// 根据关联表id查看详情
export function getStudentDetail(id) {
return request({
url: `/dormitory/srs-dormitory-student/${id}`,
method: 'get'
})
}
// 修改学生宿舍关联
export function updateStudent(data) {
return request({
url: '/dormitory/srs-dormitory-student/update',
method: 'post',
data
})
}
// 获取校区
export function listAllCampus() {
return request({

View File

@@ -1,33 +1,33 @@
import request from '@/utils/request'
export function myProcess(data){
return request({
'url': '/flowable/task/myProcess',
'method': 'get',
data
})
export function myProcess(params){
return request({
url: '/flowable/task/myProcess',
method: 'get',
params
})
}
export function todoList(data){
return request({
'url': '/flowable/task/todoList',
'method': 'get',
data
})
export function todoList(params){
return request({
url: '/flowable/task/todoList',
method: 'get',
params
})
}
export function finishedList(data){
return request({
'url': '/flowable/task/finishedList',
'method': 'get',
data
})
export function finishedList(params){
return request({
url: '/flowable/task/finishedList',
method: 'get',
params
})
}
export function flowRecord(data){
return request({
'url': '/flowable/task/flowRecord',
'method': 'get',
data
})
export function flowRecord(params){
return request({
url: '/flowable/task/flowRecord',
method: 'get',
params
})
}
export function complete(data){
return request({