第一次上传

This commit is contained in:
Ls
2026-03-09 16:39:03 +08:00
commit 3d9efaf15c
924 changed files with 326227 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import { Service } from '@/Service/Service';
class vpLoginService {
private static GetOpenIdByWeixinPath: string = '/Login/GetOpenIdByWeixin';
/*****获取openid*****/
static GetOpenIdByWeixin(code: string,type:number) {
var result = Service.Request(this.GetOpenIdByWeixinPath, 'GET', {code,type});
return result;
}
private static WxLoginPath: string = '/Login/WxLogin';
/*****获取openid*****/
static WxLogin(code: string,type:number,lon:number,lat:number) {
var result = Service.Request(this.WxLoginPath, 'GET', {code,type,lon,lat});
return result;
}
}
export { vpLoginService }