22 lines
559 B
Plaintext
22 lines
559 B
Plaintext
import { Service } from '@/Service/Service';
|
|
/*****登录接口*****/
|
|
class CNRiderLoginService {
|
|
private static RiderLoginPath : string = '/Login/RiderLogin';
|
|
/*****登录注册*****/
|
|
static RiderLogin(login : any) {
|
|
var result = Service.Request(this.RiderLoginPath, "POST", login);
|
|
return result;
|
|
}
|
|
|
|
private static GetKefuInfoPath: string = '/Home/GetKefuInfo';
|
|
/*****获取客服电话*****/
|
|
static GetKefuInfo() {
|
|
var result = Service.Request(this.GetKefuInfoPath, "GET", {});
|
|
return result;
|
|
}
|
|
|
|
}
|
|
export {
|
|
Service,
|
|
CNRiderLoginService
|
|
} |