import { post } from '@/api/base' export const userApi = { // 登录 login: async (padNo: string) => post('/pad/login', { param: { padNo } }), }