PtlLogin.ts 242 B

1234567891011121314151617181920
  1. // 定义请求参数
  2. export interface ReqLogin {
  3. pid:string; //包ID
  4. param:string[]; //参数
  5. }
  6. // 定义返回字段
  7. export interface ResLogin {
  8. openId:string
  9. token:string
  10. }
  11. export const conf = {
  12. connet: "http"
  13. }