移动端V1.0

This commit is contained in:
2025-07-16 15:34:34 +08:00
commit 194b0750fd
1083 changed files with 178295 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
import request from '@/utils/request'
// 查询复学申请记录列表
export function listRtStuReentrySchool(query) {
return request({
url: '/routine/rtStuReentrySchool/list',
method: 'get',
params: query
})
}
// 查询复学申请记录详细
export function getRtStuReentrySchool(reentryId) {
return request({
url: '/routine/rtStuReentrySchool/' + reentryId,
method: 'get'
})
}
// 根据流程id查询数据
export function getRtStuReentrySchoolByProcInsId(procInsId) {
return request({
url: '/routine/rtStuReentrySchool/getRtStuReentrySchoolByProcInsId/' + procInsId,
method: 'get',
})
}
// 新增复学申请记录
export function addRtStuReentrySchool(data) {
return request({
url: '/routine/rtStuReentrySchool/add',
method: 'post',
data: data
})
}
// 保存复学申请记录
export function save(data) {
return request({
url: '/routine/rtStuReentrySchool/save',
method: 'post',
data: data
})
}
// 修改复学申请记录
export function updateRtStuReentrySchool(data) {
return request({
url: '/routine/rtStuReentrySchool/update',
method: 'post',
data: data
})
}
// 删除复学申请记录
export function delRtStuReentrySchool(reentryId) {
return request({
url: '/routine/rtStuReentrySchool/' + reentryId,
method: 'post'
})
}