付延余
2022-04-24 473bd88d37e20ce9724b7fdaa70e3cc2b963e066
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { getRequest, postRequest } from "../libs/axios";
 
// 后台用户相关
export const login = params => {
    return postRequest('/ybg/webservice/phone/login.do', params);
}
export const getAdminIndex = params => {
    return getRequest('/getAdminIndex', params);
}
 
 
// 首页接口
export const getInsured = (params) => {
  return postRequest('/ybg/webservice/app/homepage/getInsured.do',params)
}
export const getInstitution = (params) => {
  return postRequest('/ybg/webservice/app/homepage/getInstitution.do',params)
}