import {http} from "../utils/http.js" /** *微信登录 */ export const mark= (code) => { return http({ url:"/api/wxLogin", data:{ code, }, method:"POST" }) } /** * 获取当前的user信息 */ export const getUserInfo=()=>{ return http('/employee/getUserInfo'); }