初始化
This commit is contained in:
44
src/api/stureg/ArrivalInformation.js
Normal file
44
src/api/stureg/ArrivalInformation.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询到站信息登记列表
|
||||
export function listArrivalInformation(query) {
|
||||
return request({
|
||||
url: '/stureg/ArrivalInformation/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询到站信息登记详细
|
||||
export function getArrivalInformation(arriveId) {
|
||||
return request({
|
||||
url: '/stureg/ArrivalInformation/' + arriveId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增到站信息登记
|
||||
export function addArrivalInformation(data) {
|
||||
return request({
|
||||
url: '/stureg/ArrivalInformation',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改到站信息登记
|
||||
export function updateArrivalInformation(data) {
|
||||
return request({
|
||||
url: '/stureg/ArrivalInformation/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除到站信息登记
|
||||
export function delArrivalInformation(arriveId) {
|
||||
return request({
|
||||
url: '/stureg/ArrivalInformation/delete/' + arriveId,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
44
src/api/stureg/check.js
Normal file
44
src/api/stureg/check.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询报到核验列表
|
||||
export function listCheck(query) {
|
||||
return request({
|
||||
url: '/stureg/check/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询报到核验详细
|
||||
export function getCheck(id) {
|
||||
return request({
|
||||
url: '/stureg/check/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增报到核验
|
||||
export function addCheck(data) {
|
||||
return request({
|
||||
url: '/stureg/check/add',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改报到核验
|
||||
export function updateCheck(data) {
|
||||
return request({
|
||||
url: '/stureg/check/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除报到核验
|
||||
export function delCheck(id) {
|
||||
return request({
|
||||
url: '/stureg/check/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
44
src/api/stureg/checkroom.js
Normal file
44
src/api/stureg/checkroom.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询入住信息列表
|
||||
export function listCheckroom(query) {
|
||||
return request({
|
||||
url: '/stureg/checkroom/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询入住信息详细
|
||||
export function getCheckroom(id) {
|
||||
return request({
|
||||
url: '/stureg/checkroom/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增入住信息
|
||||
export function addCheckroom(data) {
|
||||
return request({
|
||||
url: '/stureg/checkroom',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改入住信息
|
||||
export function updateCheckroom(data) {
|
||||
return request({
|
||||
url: '/stureg/checkroom/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除入住信息
|
||||
export function delCheckroom(id) {
|
||||
return request({
|
||||
url: '/stureg/checkroom/delete/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
45
src/api/stureg/dataScreen.js
Normal file
45
src/api/stureg/dataScreen.js
Normal file
@@ -0,0 +1,45 @@
|
||||
import request from '@/utils/request';
|
||||
|
||||
export function countRoomBed() {
|
||||
return request({
|
||||
url: "/system/reg/countRoomBed"
|
||||
});
|
||||
}
|
||||
|
||||
export function countStuXb() {
|
||||
return request({
|
||||
url: "/system/reg/countStuXb"
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export function listNewBaodao() {
|
||||
return request({
|
||||
url: "/system/reg/listNewBaodao"
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export function countDeptBaodao() {
|
||||
return request({
|
||||
url: "/system/reg/countDeptBaodao"
|
||||
});
|
||||
}
|
||||
|
||||
export function countBaodao() {
|
||||
return request({
|
||||
url: "/system/reg/countBaodao"
|
||||
});
|
||||
}
|
||||
|
||||
export function countDeptStuMoney() {
|
||||
return request({
|
||||
url: "/system/reg/countDeptStuMoney"
|
||||
});
|
||||
}
|
||||
|
||||
export function countCityStu() {
|
||||
return request({
|
||||
url: "/system/reg/countCityStu"
|
||||
});
|
||||
}
|
||||
44
src/api/stureg/dorm.js
Normal file
44
src/api/stureg/dorm.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询【请填写功能名称】列表
|
||||
export function listDorm(query) {
|
||||
return request({
|
||||
url: '/system/dorm/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询【请填写功能名称】详细
|
||||
export function getDorm(id) {
|
||||
return request({
|
||||
url: '/system/dorm/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增【请填写功能名称】
|
||||
export function addDorm(data) {
|
||||
return request({
|
||||
url: '/system/dorm',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改【请填写功能名称】
|
||||
export function updateDorm(data) {
|
||||
return request({
|
||||
url: '/system/dorm/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除【请填写功能名称】
|
||||
export function delDorm(id) {
|
||||
return request({
|
||||
url: '/system/dorm/delete/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
44
src/api/stureg/feedback.js
Normal file
44
src/api/stureg/feedback.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询新生报到反馈列表
|
||||
export function listFeedback(query) {
|
||||
return request({
|
||||
url: '/system/feedback/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询新生报到反馈详细
|
||||
export function getFeedback(id) {
|
||||
return request({
|
||||
url: '/system/feedback/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增新生报到反馈
|
||||
export function addFeedback(data) {
|
||||
return request({
|
||||
url: '/system/feedback',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改新生报到反馈
|
||||
export function updateFeedback(data) {
|
||||
return request({
|
||||
url: '/system/feedback/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除新生报到反馈
|
||||
export function delFeedback(id) {
|
||||
return request({
|
||||
url: '/system/feedback/delete/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
47
src/api/stureg/intenetin.js
Normal file
47
src/api/stureg/intenetin.js
Normal file
@@ -0,0 +1,47 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询注册信息列表
|
||||
export function listInfo(query) {
|
||||
return request({
|
||||
url: '/stureg/intenetin/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询注册信息详细
|
||||
export function getInfo(registerId) {
|
||||
return request({
|
||||
url: '/stureg/intenetin/' + registerId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增注册信息
|
||||
|
||||
export function addInfo(data) {
|
||||
return request({
|
||||
url: '/stureg/intenetin',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改注册信息
|
||||
|
||||
export function updateInfo(data) {
|
||||
return request({
|
||||
url: '/stureg/intenetin/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除注册信息
|
||||
|
||||
export function delInfo(registerId) {
|
||||
return request({
|
||||
url: '/stureg/intenetin/delete/' + registerId,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
44
src/api/stureg/list.js
Normal file
44
src/api/stureg/list.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询新生待办列表
|
||||
export function listList(query) {
|
||||
return request({
|
||||
url: '/system/list/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询新生待办详细
|
||||
export function getList(id) {
|
||||
return request({
|
||||
url: '/system/list/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增新生待办
|
||||
export function addList(data) {
|
||||
return request({
|
||||
url: '/system/list',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改新生待办
|
||||
export function updateList(data) {
|
||||
return request({
|
||||
url: '/system/list/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除新生待办
|
||||
export function delList(id) {
|
||||
return request({
|
||||
url: '/system/list/delete/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
44
src/api/stureg/notify.js
Normal file
44
src/api/stureg/notify.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询新生报到通知列表
|
||||
export function listNotify(query) {
|
||||
return request({
|
||||
url: '/system/notify/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询新生报到通知详细
|
||||
export function getNotify(id) {
|
||||
return request({
|
||||
url: '/system/notify/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增新生报到通知
|
||||
export function addNotify(data) {
|
||||
return request({
|
||||
url: '/system/notify',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改新生报到通知
|
||||
export function updateNotify(data) {
|
||||
return request({
|
||||
url: '/system/notify/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除新生报到通知
|
||||
export function delNotify(id) {
|
||||
return request({
|
||||
url: '/system/notify/delete/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
44
src/api/stureg/offlinecheckin.js
Normal file
44
src/api/stureg/offlinecheckin.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询现场办理学生信息列表
|
||||
export function listOfflinecheckin(query) {
|
||||
return request({
|
||||
url: '/stureg/offlinecheckin/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询现场办理学生信息详细
|
||||
export function getOfflinecheckin(id) {
|
||||
return request({
|
||||
url: '/stureg/offlinecheckin/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增现场办理学生信息
|
||||
export function addOfflinecheckin(data) {
|
||||
return request({
|
||||
url: '/stureg/offlinecheckin',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改现场办理学生信息
|
||||
export function updateOfflinecheckin(data) {
|
||||
return request({
|
||||
url: '/stureg/offlinecheckin/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除现场办理学生信息
|
||||
export function delOfflinecheckin(id) {
|
||||
return request({
|
||||
url: '/stureg/offlinecheckin/delete/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
52
src/api/stureg/order.js
Normal file
52
src/api/stureg/order.js
Normal file
@@ -0,0 +1,52 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
|
||||
export function listOwnOrder(){
|
||||
return request({
|
||||
url:"/system/order/list/user",
|
||||
method:"get"
|
||||
})
|
||||
}
|
||||
|
||||
// 查询支付订单列表
|
||||
export function listOrder(query) {
|
||||
return request({
|
||||
url: '/system/order/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询支付订单详细
|
||||
export function getOrder(id) {
|
||||
return request({
|
||||
url: '/system/order/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增支付订单
|
||||
export function addOrder(data) {
|
||||
return request({
|
||||
url: '/system/order',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改支付订单
|
||||
export function updateOrder(data) {
|
||||
return request({
|
||||
url: '/system/order/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除支付订单
|
||||
export function delOrder(id) {
|
||||
return request({
|
||||
url: '/system/order/delete/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
51
src/api/stureg/payment.js
Normal file
51
src/api/stureg/payment.js
Normal file
@@ -0,0 +1,51 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export function listOwnPayment() {
|
||||
return request({
|
||||
url: "/system/payment/listOwnPayment",
|
||||
method: "post"
|
||||
});
|
||||
}
|
||||
|
||||
// 查询费用表列表
|
||||
export function listPayment(query) {
|
||||
return request({
|
||||
url: '/system/payment/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询费用表详细
|
||||
export function getPayment(id) {
|
||||
return request({
|
||||
url: '/system/payment/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增费用表
|
||||
export function addPayment(data) {
|
||||
return request({
|
||||
url: '/system/payment',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改费用表
|
||||
export function updatePayment(data) {
|
||||
return request({
|
||||
url: '/system/payment/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除费用表
|
||||
export function delPayment(id) {
|
||||
return request({
|
||||
url: '/system/payment/delete/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
44
src/api/stureg/paymoney.js
Normal file
44
src/api/stureg/paymoney.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询网上缴费情况列表
|
||||
export function listPaymoney(query) {
|
||||
return request({
|
||||
url: '/stureg/paymoney/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询网上缴费情况详细
|
||||
export function getPaymoney(id) {
|
||||
return request({
|
||||
url: '/stureg/paymoney/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增网上缴费情况
|
||||
export function addPaymoney(data) {
|
||||
return request({
|
||||
url: '/stureg/paymoney',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改网上缴费情况
|
||||
export function updatePaymoney(data) {
|
||||
return request({
|
||||
url: '/stureg/paymoney/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除网上缴费情况
|
||||
export function delPaymoney(id) {
|
||||
return request({
|
||||
url: '/stureg/paymoney/delete/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
44
src/api/stureg/pickstation.js
Normal file
44
src/api/stureg/pickstation.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询新生接站登记列表
|
||||
export function listPickstation(query) {
|
||||
return request({
|
||||
url: '/stureg/pickstation/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询新生接站登记详细
|
||||
export function getPickstation(id) {
|
||||
return request({
|
||||
url: '/stureg/pickstation/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增新生接站登记
|
||||
export function addPickstation(data) {
|
||||
return request({
|
||||
url: '/stureg/pickstation',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改新生接站登记
|
||||
export function updatePickstation(data) {
|
||||
return request({
|
||||
url: '/stureg/pickstation/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除新生接站登记
|
||||
export function delPickstation(id) {
|
||||
return request({
|
||||
url: '/stureg/pickstation/delete/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
53
src/api/stureg/queue.js
Normal file
53
src/api/stureg/queue.js
Normal file
@@ -0,0 +1,53 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
|
||||
export function sendRegMsg(data){
|
||||
return request({
|
||||
url:"/system/queue/sendSms",
|
||||
data:data,
|
||||
method:"post"
|
||||
});
|
||||
}
|
||||
|
||||
// 查询短信队列列表
|
||||
export function listQueue(query) {
|
||||
return request({
|
||||
url: '/system/queue/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询短信队列详细
|
||||
export function getQueue(id) {
|
||||
return request({
|
||||
url: '/system/queue/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增短信队列
|
||||
export function addQueue(data) {
|
||||
return request({
|
||||
url: '/system/queue',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改短信队列
|
||||
export function updateQueue(data) {
|
||||
return request({
|
||||
url: '/system/queue/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除短信队列
|
||||
export function delQueue(id) {
|
||||
return request({
|
||||
url: '/system/queue/delete/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
145
src/api/stureg/reg.js
Normal file
145
src/api/stureg/reg.js
Normal file
@@ -0,0 +1,145 @@
|
||||
import request from '@/utils/request';
|
||||
|
||||
export function checkAllDorm() {
|
||||
return request({
|
||||
url: "/dormitory/reg/checkAllDorm",
|
||||
method: "POST"
|
||||
});
|
||||
}
|
||||
|
||||
export function checkDorm(ksh) {
|
||||
return request({
|
||||
url: "/dormitory/reg/checkDorm/" + ksh,
|
||||
method: "POST"
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export function countMajorTop10() {//空
|
||||
return request({
|
||||
url: "/system/reg/countMajorTop10",
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export function countDept() {
|
||||
return request({
|
||||
url: "/system/reg/countDept",
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
|
||||
export function countArea() {
|
||||
return request({
|
||||
url: "/system/reg/countArea",
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export function countNowAt() {
|
||||
return request({
|
||||
url: "/system/reg/countNowAt",
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
|
||||
export function countGender() {
|
||||
return request({
|
||||
url: "/system/reg/countGender",
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
|
||||
export function importDbf(data) {
|
||||
return request({
|
||||
url: "/system/reg/addDbfData",
|
||||
headers: { 'Content-type': "multipart/form-data" },
|
||||
method: "post",
|
||||
data
|
||||
});
|
||||
}
|
||||
export function importData(data) {
|
||||
return request({
|
||||
url: "/system/reg/importData",
|
||||
method: "post",
|
||||
data
|
||||
});
|
||||
}
|
||||
//统计报到状态
|
||||
export function countStatus() {
|
||||
return request({
|
||||
url: "/system/reg/count",
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
|
||||
export function doReg(data) {
|
||||
return request({
|
||||
url: "/system/reg/addStuRegList",
|
||||
method: "post",
|
||||
data: data
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export function getOwnInfo() {
|
||||
return request({
|
||||
url: "/system/reg/getOwnInfo",
|
||||
method: "post"
|
||||
});
|
||||
}
|
||||
|
||||
//导入
|
||||
export function importInfo(data) {
|
||||
return request({
|
||||
url: '/system/reg/addSrsStuRegList',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 查询新生报到学生注册信息列表
|
||||
export function listReg(query) {
|
||||
return request({
|
||||
url: '/system/reg/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询新生报到学生注册信息详细
|
||||
export function getReg(id) {
|
||||
return request({
|
||||
url: '/system/reg/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增新生报到学生注册信息
|
||||
export function addReg(data) {
|
||||
return request({
|
||||
url: '/system/reg',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改新生报到学生注册信息
|
||||
export function updateReg(data) {
|
||||
return request({
|
||||
url: '/system/reg/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除新生报到学生注册信息
|
||||
export function delReg(data) {
|
||||
return request({
|
||||
url: '/system/reg/delete',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
52
src/api/stureg/regcount.js
Normal file
52
src/api/stureg/regcount.js
Normal file
@@ -0,0 +1,52 @@
|
||||
import request from '@/utils/request';
|
||||
//学院报道人数
|
||||
export function countDept() {
|
||||
return request({
|
||||
url: "/system/regcount/countDept",
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
//新生地区生源报到人数
|
||||
export function countArea() {
|
||||
return request({
|
||||
url: "/system/regcount/countArea",
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
//新生小时报到人数
|
||||
export function countHour() {
|
||||
return request({
|
||||
url: "/system/regcount/countHour",
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
//新生专业报到人数top10
|
||||
export function countMajorTop10() {
|
||||
return request({
|
||||
url: "/system/regcount/countMajorTop10",
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
//新生已报到人数
|
||||
export function countNowAt() {
|
||||
return request({
|
||||
url: "/system/regcount/countNowAt",
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
//新生性别人数
|
||||
export function countGender() {
|
||||
return request({
|
||||
url: "/system/regcount/countGender",
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
|
||||
//新生报到交通方式
|
||||
export function transportationWay() {
|
||||
return request({
|
||||
// url: "/system/regcount/atstation",
|
||||
url: "/system/regcount/atStationByCampus",
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
44
src/api/stureg/select.js
Normal file
44
src/api/stureg/select.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询【请填写功能名称】列表
|
||||
export function listSelect(query) {
|
||||
return request({
|
||||
url: '/system/select/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询【请填写功能名称】详细
|
||||
export function getSelect(id) {
|
||||
return request({
|
||||
url: '/system/select/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增【请填写功能名称】
|
||||
export function addSelect(data) {
|
||||
return request({
|
||||
url: '/system/select',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改【请填写功能名称】
|
||||
export function updateSelect(data) {
|
||||
return request({
|
||||
url: '/system/select/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除【请填写功能名称】
|
||||
export function delSelect(id) {
|
||||
return request({
|
||||
url: '/system/select/delete/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
44
src/api/stureg/size.js
Normal file
44
src/api/stureg/size.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询学生尺码列表
|
||||
export function listSize(query) {
|
||||
return request({
|
||||
url: '/stureg/size/listVo',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询学生尺码详细
|
||||
export function getSize(id) {
|
||||
return request({
|
||||
url: '/stureg/size/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增学生尺码
|
||||
export function addSize(data) {
|
||||
return request({
|
||||
url: '/stureg/size/add',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改学生尺码
|
||||
export function updateSize(data) {
|
||||
return request({
|
||||
url: '/stureg/size/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除学生尺码
|
||||
export function delSize(id) {
|
||||
return request({
|
||||
url: '/stureg/size/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
44
src/api/stureg/station.js
Normal file
44
src/api/stureg/station.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询新生接站登记列表
|
||||
export function listStation(query) {
|
||||
return request({
|
||||
url: '/stureg/pickstation/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询新生接站登记详细
|
||||
export function getStation(id) {
|
||||
return request({
|
||||
url: '/stureg/pickstation/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增新生接站登记
|
||||
export function addStation(data) {
|
||||
return request({
|
||||
url: '/stureg/pickstation',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改新生接站登记
|
||||
export function updateStation(data) {
|
||||
return request({
|
||||
url: '/stureg/pickstation/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除新生接站登记
|
||||
export function delStation(id) {
|
||||
return request({
|
||||
url: '/stureg/pickstation/delete/'+id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
10
src/api/stureg/stu.js
Normal file
10
src/api/stureg/stu.js
Normal file
@@ -0,0 +1,10 @@
|
||||
import request from '@/utils/request';
|
||||
|
||||
|
||||
export function listFdy(params){
|
||||
return request({
|
||||
url:"/system/reg/listFdy",
|
||||
method:"GET",
|
||||
params
|
||||
});
|
||||
}
|
||||
60
src/api/stureg/stu_todo.js
Normal file
60
src/api/stureg/stu_todo.js
Normal file
@@ -0,0 +1,60 @@
|
||||
import request from '@/utils/request';
|
||||
|
||||
export function listStuTodo(ksh) {
|
||||
return request({
|
||||
url: '/system/todo/listStuTodo/' + ksh,
|
||||
method: 'GET'
|
||||
});
|
||||
}
|
||||
|
||||
// 连表查询
|
||||
export function listTodoJoin(query) {
|
||||
return request({
|
||||
url: "/system/todo/listjoin",
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
// 查询学生待办表列表
|
||||
export function listTodo(query) {
|
||||
return request({
|
||||
url: '/system/todo/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询学生待办表详细
|
||||
export function getTodo(id) {
|
||||
return request({
|
||||
url: '/system/todo/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增学生待办表
|
||||
export function addTodo(data) {
|
||||
return request({
|
||||
url: '/system/todo',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改学生待办表
|
||||
export function updateTodo(data) {
|
||||
return request({
|
||||
url: '/system/todo/update',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除学生待办表
|
||||
export function delTodo(id) {
|
||||
return request({
|
||||
url: '/system/todo/delete/' + id,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user