新生报到移动端V1.0
This commit is contained in:
60
api/toApi.js
Normal file
60
api/toApi.js
Normal file
@@ -0,0 +1,60 @@
|
||||
import axios from "@/config/api.js";
|
||||
|
||||
export function listTodo(query = {}){
|
||||
return axios.get('/system/list/listAll',query)
|
||||
}
|
||||
|
||||
export function listOwnTodo(query = {}){
|
||||
return axios.get("/system/todo/listowntodo",query)
|
||||
}
|
||||
|
||||
export function listTask(query){
|
||||
return axios.get("/system/list/getList",query)
|
||||
}
|
||||
|
||||
export function listOwnTask(){
|
||||
return axios.get("/system/todo/listOwnTask")
|
||||
}
|
||||
|
||||
export function confirmRxxz(){
|
||||
return axios.post("/system/todo/confirmRxxz")
|
||||
}
|
||||
|
||||
export function getOwnTaskStatusByCode(code){
|
||||
return axios.get("/system/todo/getOwnTaskStatusByCode/"+code)
|
||||
}
|
||||
|
||||
export function confirmZyqr(){
|
||||
return axios.post("/system/todo/confirmZyqr")
|
||||
}
|
||||
|
||||
export function confirmZxxs(){
|
||||
return axios.post("/system/todo/confirmZxxs")
|
||||
}
|
||||
|
||||
//确定助学贷款
|
||||
export function confirmZxdk(data){
|
||||
return axios.post("/system/reg/stuInfo",data)
|
||||
}
|
||||
//号码确认
|
||||
export function confirmHmqr(){
|
||||
return axios.post("/system/todo/confirmHmqr")
|
||||
}
|
||||
//报道核验
|
||||
|
||||
export function confirmBdhy(){
|
||||
return axios.post("/system/todo/confirmBdhy")
|
||||
}
|
||||
|
||||
export function sendSmsUpdatePwd(data){
|
||||
return axios.post("/system/queue/sendSmsUpdatePwd",data)
|
||||
}
|
||||
//验证账号
|
||||
export function verifyPwd(data){
|
||||
return axios.post("/system/reg/verifyPwd",data);
|
||||
}
|
||||
//忘记密码
|
||||
checkPwd
|
||||
export function checkPwd(data){
|
||||
return axios.post("/system/reg/checkPwd",data);
|
||||
}
|
Reference in New Issue
Block a user