60 lines
1.3 KiB
JavaScript
60 lines
1.3 KiB
JavaScript
|
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);
|
||
|
}
|