UNPKG

@npmxiaowu/h-ui-plus

Version:

Vue3 中基于Element-plus二次封装基础组件文档

40 lines (39 loc) 719 B
import { AxiosPromise } from "axios"; /** * 请求参数 */ export interface LoginData { /** * 手机号 */ phone: string; /** * 用户名 */ username: string; /** * 验证码缓存key */ captchaCode: string; verify_code: string; } /** * 相应参数 */ export interface LoginResult { /** * 手机号 */ phone: string; /** * 用户名 */ username: string; /** * 验证码缓存key */ captchaCode: string; verify_code: string; } export declare function getDistribution(parentGuid: any): AxiosPromise<LoginResult>; export declare function editDistribution(parentGuid: any): AxiosPromise<LoginResult>;